/**
* Template Name: Selecao
* Template URL: https://bootstrapmade.com/selecao-bootstrap-template/
* Updated: Aug 07 2024 with Bootstrap v5.3.3
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */
:root {
  --default-font: "Comfortaa",  system-ui, -apple-system, "Segoe UI", Comfortaa, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Parkinsans",  sans-serif;
  --nav-font: "Parkinsans",  sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root { 
  --background-color: #ffffff; /* Background color for the entire website, including individual sections */
  --default-color: #444444; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #2a2c39; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #ef6603; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --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. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #ffffff;  /* The default color of the main navmenu links */
  --nav-hover-color: #ef6603; /* 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: #060606; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #ef6603; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

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

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

.dark-background {
  --background-color: #2a2c39;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #404356;
  --contrast-color: #ffffff;
}

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

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

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

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 1.5rem;
  font-weight: bold;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 1.5rem;
  font-weight: bold;
}

.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 1.5rem;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 1.5rem;
  height: 1.5rem;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

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

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  /*--background-color: rgba(255, 255, 255, 0);*/
  /*--heading-color: #ffffff;*/
  color: var(--default-color);
  background-color:#F5F5F5;
  padding: 2.25rem 0;
  transition: all 0.5s;
  z-index: 997;
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  /*max-height: 32px;*/
  margin-right: 8px;
  max-height:37px;
}

.header .logo h1 {
  font-size: 1.875rem;
  margin: 0;
  font-weight: bold;
  color: var(--heading-color);
}

.scrolled .header {
  box-shadow: 0px 0 1.125rem rgba(0, 0, 0, 0.1);
}

/* Global Header on Scroll
------------------------------*/
.scrolled .header {
  --background-color: rgba(42, 44, 57, 0.9);
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/

/*ALL MOVED TO SCREEN.CSS*/

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer-new {
  color: #EEE2D9;
  background-color: var(--background-color);
  /*text-align: center;*/
  padding: 2.375rem 0 1.875rem;
  /*position: relative;*/
  /*margin-top:2.25rem;*/
  /*border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%) !important*/;
}
.footer-new p {
  font-size: 0.75rem;
  font-style: italic;
  padding: 0;
  margin: 0 0 1.875rem 0;
}
.footer-new .social-links {
  margin: 0 0 1.875rem 0;
}
.footer-new .social-links a {
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-color);
  color: var(--contrast-color);
  line-height: 1;
  margin: 0 4px;
  border-radius: 50%;
  text-align: center;
  width: 2.25rem;
  height: 2.25rem;
  transition: 0.3s;
}
.footer-new .social-links a:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
  text-decoration: none;
}
.footer-new .copyright {
  padding-top: 34px;
  /*display: inline;*/
  /*justify-content: center;  /* Ensures horizontal centering */*/
  align-items: center;  /* Vertically aligns if needed */
  font-size: 0.875rem;
  width: 100%; /* Ensures it takes up the full width */
  text-align: center;  /* Centers the text inside */
}
.footer-new .copyright .br, .footer .copyright .br-2 {
  display:inline;
}
.footer-new .copyright .bold {
  font-weight:500;
  color:#ECC7AC;
}
.footer-new .credits {
  font-size: 1rem;
  padding-top: 5px;
}

/* Footer 4 Columngs*/

.footer .container {
  /*display: flex;
  flex-wrap: wrap;
  justify-content: flex-start; /* Ensures content starts from the left 
  text-align: left; /* Ensures text and links align to the left within the column */
}

/* Footer Columns */
.footer-links {
  /*display: flex;
  flex-wrap: wrap; 
  justify-content: space-between; */
}
.footer-column {
  /*flex: 1 1 25%;
  min-width: 200px;
  padding: 0 20px;
  justify-content: flex-start; /* Align the content to the left 
  text-align: left; /* Ensures text and links align to the left within the column 
  box-sizing: border-box; /* Ensures padding does not affect width */
}

.footer-new ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.footer-new ul li {
  margin-bottom: 5px;
  font-size:0.75rem;
  width:auto;
  min-width:180px;
}
.footer-new ul li.h4 {
  font-family: var(--heading-font);
  font-size: 1rem;
  font-weight:500;
  margin-bottom: 10px;
  padding:15px 0 7px;
  /*border-bottom:1px solid color-mix(in srgb, var(--default-color), transparent 90%);*/
  /*text-align:center;*/
}
.footer-new ul li a {
  color: #ECC7AC;
  text-decoration: none;
  transition: 0.3s;
}
.footer-new ul li a:hover, .footer-new ul li a.active {
  /*text-decoration: underline;*/
  color:#FFFFFF;
}
.footer-new .footer-li-last {
  padding-bottom:8px;
}

/* End - Footer 4 Columns */

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

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

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

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

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

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

.scroll-top i {
  font-size: 1.5rem;
  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;
}

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

.page-title:before {
  content: "";
  background-color: color-mix(in srgb, var(--background-color), transparent 50%);
  position: absolute;
  inset: 0;
}

.page-title h1 {
  font-size: 2.625rem;
  font-weight: bold;
  margin-bottom: 10px;
}

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

.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 50%);
}

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

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  padding-bottom: 60px;
  position: relative;
}

.section-title-new {
  padding-bottom: 30px !important;
}

.section-title h1 {
  font-size: 1.5rem;
  font-weight: bold;
  padding: 0;
  margin: 0;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  /*color: color-mix(in srgb, var(--default-color), transparent 50%);*/
  color:#EF6603;
  position: relative;
}

.section-title h1:not(.starter-section .section-title h1) {
  line-height: 1px;
}

.section-title h1:not(.starter-section .section-title h1)::after {
  content: "";
  width: 11.25rem;
  height: 1px;
  display: inline-block;
  background: var(--accent-color);
  margin: 4px 10px;
}

.section-title h2 {
  color: var(--heading-color);
  margin: 0;
  font-size: 2.25rem;
  font-weight: 500;
  text-transform: capitalize;
  font-family: var(--heading-font);
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  overflow: hidden;
  position: relative;
  background: linear-gradient(0deg, var(--background-color) 0%, color-mix(in srgb, var(--background-color) 90%, white 10%) 100%);
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: end;
  align-items: center;
}

.hero .carousel-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  position: relative;
  min-height: 486px;
  padding-top: 60px;
}

.hero h2 {
  margin-bottom: 1.875rem;
  font-size: 2.75rem;
  font-weight: bold;
}

/*.hero h2 span {
  text-decoration: underline;
}*/

.hero p {
  max-width:85%;
  animation-delay: 0.4s;
  margin: 0 auto 1.875rem auto;
  font-size: 1.5rem;
  text-align:justify !important;
}

.hero .carousel-control-prev,
.hero .carousel-control-next {
  width: 10%;
}

.hero .carousel-control-next-icon,
.hero .carousel-control-prev-icon {
  background: none;
  font-size: 3rem;
  line-height: 1;
  width: auto;
  height: auto;
}

.hero .btn-get-started {
  font-weight: 500;
  font-size: 1.5rem;
  font-family: var(--heading-font);
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 32px;
  border-radius: 50px;
  transition: 0.5s;
  line-height: 1;
  margin: 10px;
  animation-delay: 0.8s;
  border: 2px solid var(--accent-color);
  color: var(--contrast-color);
  background: var(--accent-color);
}

.hero .btn-get-started:hover {
  color: var(--default-color);
  background: none;
  text-decoration: none;
}

.hero .hero-waves {
  display: block;
  width: 100%;
  height: 60px;
  position: relative;
}

.hero .wave1 use {
  animation: move-forever1 10s linear infinite;
  animation-delay: -2s;
  fill: var(--default-color);
  opacity: 0.6;
}

.hero .wave2 use {
  animation: move-forever2 8s linear infinite;
  animation-delay: -2s;
  fill: var(--default-color);
  opacity: 0.4;
}

.hero .wave3 use {
  animation: move-forever3 6s linear infinite;
  animation-delay: -2s;
  fill: var(--default-color);
}

@keyframes move-forever1 {
  0% {
    transform: translate(85px, 0%);
  }

  100% {
    transform: translate(-90px, 0%);
  }
}

@keyframes move-forever2 {
  0% {
    transform: translate(-90px, 0%);
  }

  100% {
    transform: translate(85px, 0%);
  }
}

@keyframes move-forever3 {
  0% {
    transform: translate(-90px, 0%);
  }

  100% {
    transform: translate(85px, 0%);
  }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about ul {
  list-style: none;
  padding: 0;
}

.about ul li {
  padding-bottom: 5px;
  display: flex;
  align-items: center;
}

.about ul i {
  font-size: 1.25rem;
  padding-right: 4px;
  color: var(--accent-color);
}

.read-more {
  background: var(--accent-color);
  color: var(--contrast-color);
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 1.5rem;
  letter-spacing: 1px;
  padding: 10px 1.75rem;
  border-radius: 5px;
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align:center;
}

.read-more i {
  font-size: 1.125rem;
  margin-left: 5px;
  line-height: 0;
  transition: 0.3s;
}

.read-more:hover {
  background: color-mix(in srgb, var(--accent-color) 90%, white 15%);
  color:#FFFFFF !important;
}

.read-more:hover i {
  transform: translate(5px, 0);
}

/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features .nav-tabs {
  border: 0;
}

.features .nav-link {
  background-color: var(--surface-color);
  color: var(--heading-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  padding: 15px 1.25rem;
  transition: 0.3s;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  height: 100%;
}

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

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

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

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

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

.features .tab-content {
  margin-top: 1.875rem;
}

.features .tab-pane h3 {
  color: var(--heading-color);
  font-weight: 500;
  font-size: 1.625rem;
}

.features .tab-pane .custom-margins, .packages .custom-margins, .ai .custom-margins, .why-us .custom-margins {
  margin-top:30px !important;
  margin-bottom:48px !important;
}
.features .tab-pane .custom-margins-h, .packages .custom-margins-h, .ai .custom-margins, .why-us .custom-margins-h {
  margin-top:0;
}
.features .tab-pane .custom-lg-flex, .packages .custom-lg-flex, .ai .custom-lg-flex, .why-us .custom-lg-flex {
  /*display:block;*/
  padding-top:0;
}

.features .tab-pane h2, .packages h2, .ai h2, .why-us h2 {
    background-color:#FFA500;
	padding:16px 20px 20px;
	color:#FFFFFF;
	width:100%;
	text-align:center;
  }

.features .tab-pane p {
  font-size: 1.125rem;
}

.features .tab-pane ul, .ai ul {
  list-style: none;
  padding: 0;
  margin-top:0;
  margin-bottom:0;
}

.features .tab-pane ul li, .ai ul li {
  display: flex; /* Flex layout */
  align-items: flex-start; /* Makes sure the icon and text are aligned at the top */
  padding-bottom: 10px;
}
.div-li {
  padding-bottom: 10px;
}
.ai ul.d-block li {
  display:inline-block !important;
}
.ai ul.d-block li strong, .strong-2 {
  text-decoration:underline;
  color:#C75A0D;
  font-size:1.25rem;
}
.strong-2 {
  text-decoration:none;
  font-weight:bold;
}
.strong-2:hover {
  color:#FFA500;
  cursor:default;
}
.privacy strong {
  font-size: inherit !important;
}
.ai ul.d-block li strong .bi {
  margin-right:10px;
}
.ai .p-s-x {
  padding-left:30px;
}

.features .tab-pane ul li.first, .ai ul li.first {
  padding-top: 0;
}
.features .tab-pane ul li.last, .ai ul li.last {
  padding-bottom: 0;
}

.features .tab-pane ul li i, .ai ul li i, .why-us ul li i {
  margin-right: 20px; /* Space between icon and text */
  font-size: 1.25rem;
  /*padding-right: 4px;*/
  color: var(--accent-color);
}

.privacy .bullet {
  padding-left:30px;
  margin-left:35px;
  list-style:disc;
}

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

.vps h3 {
  color:#EF6603 !important;
  text-align:center;
  text-decoration: none !important;
}
.vps ul {
  padding-left:0;
}
.vps ul li {
  list-style:none;
}

.vps ul.diy li {
  font-size:1.25rem;
  color:#EF6603;
  font-weight:500;
  margin-bottom:10px;
}
.vps ul.diy li:hover {
  color:#FFA500;
  cursor:default;
}
.vps ul.diy li.last {
   margin-bottom:0;
}
.vps ul li i {
   margin-right:10px;
}
.circular {
  width: 150px;
  height: 150px;
  padding:0 23px 0 10px;
  background-color: #EFE3DA;
  border: 2px solid #ECC7AC;
  border-radius: 50%; /* This makes the div circular */
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center; /* Ensure content is centered */
  cursor:default;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); /* Horizontal offset, vertical offset, blur radius, color */
}
.vps .offer {
  font-weight:500;
  font-family: var(--heading-font);
}
.vps .offer .tag-m {
  font-size:2.75rem;
  line-height:1;
  color:#EF6603;
  
}
.vps .offer .tag-e {
  text-align:right;
  margin-top:0 !important;
  padding-top:0 !important;
}
.vps .offer .tag-e, .vps .offer .tag-s, .vps sup {
  color:#FFA500;
  font-size:1.5rem;
}
.vps sup {
  right:7px;
  font-size:1.25rem;
}
.vps i.sp {
  font-style:normal !important;
  font-size:1.25rem;
  font-weight:500;
  color:var(--heading-color) !important;
}

/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.call-to-action {
  padding: 80px 0;
  position: relative;
  clip-path: inset(0);
}

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

.call-to-action h3 {
  color: var(--default-color);
  font-size: 1.75rem;
  font-weight: bold !important;
  text-decoration:underline;
  margin-bottom:4rem !important;
}

.call-to-action h2 {
  font-weight: 500 !important;
  text-decoration:underline;
  margin-bottom:4rem !important;
  font-size:2rem;
}

.call-to-action p {
  color: var(--default-color);
  font-size: 1.125rem;
  text-align:justify !important;
}

.call-to-action .cta-btn {
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 1.5rem;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 0;
  background: var(--accent-color);
  color: var(--contrast-color);
  border: 2px solid var(--accent-color);
}

.call-to-action .cta-btn:hover {
  /*background: color-mix(in srgb, var(--accent-color) 90%, white 15%);*/
  background:none;
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
/* .services Removed class to make sub-classes as for general purpose... */.mt-custom-px-6, .mt-custom-px-b-6 {
  margin-top:6px;
}

.services .service-item {
  /*background-color: var(--surface-color);*/
  background-color:#EFE3DA;
  box-shadow: 0 5px 1.875rem 0 rgba(0, 0, 0, 0.1);
  padding: 0;
  transition: all ease-in-out 0.3s;
  border-radius: 1.125rem;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.ai .service-item {
  height:auto !important;
  border-radius: 0 !important;
  padding:20px !important;
}

/*.services .service-item .icon {
  position: absolute;
  left: 0.813rem;
  top: calc(24% - 0.063rem);
}*/

.services .service-item i.icon {
  font-size: 1.75rem;
  line-height: 1;
  transition: 0.5s;
  margin-right:20px;
}

.services .service-item h3, .services .service-item h4, .starter-section h3 {
  font-weight: 500;
  margin: 10px 0 15px 0;
  font-size: 1.375rem;
  transition: ease-in-out 0.3s;
  text-align:center;
  text-transform:uppercase;
}
.services .service-item h3, .services .service-item h4 {
  color:#B85004 !important;
}
.starter-section h3 {
  color:#EF6603;
}
.privacy h4 {
  text-align:left !important;
  padding-left:30px;
}

.privacy ul li {
  margin-left:20px !important;
  padding-left:30px !important;
}

.services .service-item p {
  /*line-height: 1.5rem;*/
  font-size: 1.125rem;
  margin-bottom: 0;
  text-align:justify;
  margin:20px 30px;	
}
.nullify.service-item p, .privacy .service-item p {
  font-size:inherit !important;
}

.privacy p.l-modified {
  text-align:right;
  font-size:0.75rem !important;
}

.privacy .sp-last {
  margin-bottom:20px !important;
}

.services .services-heading {
  display: flex;
  justify-content: center; /* Centers the icon and heading horizontally */
  text-align:center;
  padding:20px 0 13px;
  background-color:#ECC7AC;
}

.service-item .services-heading a {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.c0dcaf0 { color: #0dcaf0; } .cgold { color: gold; } .c20c997 { color: #20c997; } .cdf1529 { color: #df1529; } .c6610f2 { color: #6610f2; } .cmagenta { color: magenta; } .cEF6603 { color: #EF6603; }

.service-item .btn-wrap {
  /*background: #ECC7AC;*/
  padding: 1.25rem 0;
  text-align: center;
  margin:0 auto 40px;
}

.service-item .btn-buy {
  background: #C75A0D;
  color: var(--contrast-color);
  display: inline-block;
  padding: 8px 35px 10px 35px;
  border-radius: 10px;
  transition: none;
  font-size: 1.375rem;
  font-family: var(--heading-font);
  font-weight: bold;
  transition: 0.3s;
}

/* On hover of the stretched link, change the icon color */
.service-item:hover i.icon, 
.service-item .stretched-link:hover ~ i.icon,
.service-item:hover p, 
.service-item .stretched-link:hover ~ p {
  color: #C85A0D; 
}

.service-item:hover .btn-buy,
.service-item .stretched-link:hover ~ .btn-buy{
  background: #EF6603;
}

/* Prevent hover effect for .nullify */
.service-item.nullify:hover i.icon, 
.service-item.nullify .stretched-link:hover ~ i.icon,
.service-item.nullify:hover p, 
.service-item.nullify .stretched-link:hover ~ p {
  color: inherit; /* Resets to the default color */
}

.service-item .custom-break, .service-item .custom-break-2 {
  display:none;
}

/*--------------------------------------------------------------
# Portfolio Section
--------------------------------------------------------------*/
.portfolio .portfolio-filters {
  padding: 0;
  margin: 0 auto 1.25rem auto;
  list-style: none;
  text-align: center;
}

.portfolio .portfolio-filters li {
  cursor: pointer;
  display: inline-block;
  padding: 8px 1.25rem 10px 1.25rem;
  margin: 0;
  font-size: 15px;
  font-weight: bold;
  line-height: 1;
  margin-bottom: 5px;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
  font-family: var(--heading-font);
}

.portfolio .portfolio-filters li:hover,
.portfolio .portfolio-filters li.filter-active {
  color: var(--contrast-color);
  background-color: var(--accent-color);
}

.portfolio .portfolio-filters li:first-child {
  margin-left: 0;
}

.portfolio .portfolio-filters li:last-child {
  margin-right: 0;
}

.portfolio .portfolio-item {
  position: relative;
  overflow: hidden;
}

.portfolio .portfolio-item .portfolio-info {
  opacity: 0;
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: -100%;
  z-index: 3;
  transition: all ease-in-out 0.5s;
  background: color-mix(in srgb, var(--surface-color), transparent 10%);
  padding: 15px;
}

.portfolio .portfolio-item .portfolio-info h4 {
  font-size: 1.125rem;
  font-weight: bold;
  padding-right: 50px;
}

.portfolio .portfolio-item .portfolio-info p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 0.875rem;
  margin-bottom: 0;
  padding-right: 50px;
}

.portfolio .portfolio-item .portfolio-info .preview-link,
.portfolio .portfolio-item .portfolio-info .details-link {
  position: absolute;
  right: 50px;
  font-size: 1.5rem;
  top: calc(50% - 0.875rem);
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  transition: 0.3s;
  line-height: 0;
}

.portfolio .portfolio-item .portfolio-info .preview-link:hover,
.portfolio .portfolio-item .portfolio-info .details-link:hover {
  color: var(--accent-color);
}

.portfolio .portfolio-item .portfolio-info .details-link {
  right: 0.875rem;
  font-size: 1.75rem;
}

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

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .testimonial-item {
  background-color: var(--surface-color);
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  box-sizing: content-box;
  padding: 1.875rem;
  margin: 1.875rem 15px;
  position: relative;
  height: 100%;
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50px;
  margin-right: 15px;
}

.testimonials .testimonial-item h3 {
  font-size: 1.125rem;
  font-weight: bold;
  margin: 10px 0 5px 0;
}

.testimonials .testimonial-item h4 {
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin: 0;
}

.testimonials .testimonial-item .stars {
  margin: 10px 0;
}

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

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: color-mix(in srgb, var(--accent-color), transparent 50%);
  font-size: 1.625rem;
  line-height: 0;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  transform: scale(-1, -1);
}

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

.testimonials .swiper-wrapper {
  height: auto;
}

.testimonials .swiper-pagination {
  margin-top: 1.25rem;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: color-mix(in srgb, var(--default-color), transparent 85%);
  opacity: 1;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/
.pricing .pricing-item {
  background-color: /*var(--surface-color)*/ #2A2C39;
  box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.1);
  padding: 1.25rem 0 2px;
  text-align: center;
  border-radius: 5px;
  position: relative;
  overflow: hidden;
}

.pricing .pricing-item h3 {
  font-weight: bold;
  font-size: 1.5rem;
  margin: -1.25rem -1.25rem 1.25rem -1.25rem;
  padding: 1.25rem 15px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  /*background: color-mix(in srgb, var(--default-color), transparent 95%);*/
  /*background-color:#F5F5F5;*/
  background: var(--accent-color);
  text-transform:uppercase;
}

.pricing .pricing-item h4 {
  font-size: 2.5rem;
  font-weight: bold;
  font-family: var(--heading-font);
  margin-bottom:3px !important;
}

.pricing .pricing-item h4 sup {
  font-size: 1.5rem;
  top: -15px;
  left: -3px;
}

/*.pricing .pricing-item h4 span {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 1.125rem;
  font-weight: bold;
}*/

.pricing .pricing-item ul {
  padding: 15px 0 0;
  margin-bottom:0 !important;
  list-style: none;
  text-align: center;
  line-height: 1.25rem;
}

.pricing .pricing-item ul li {
  padding: 15px 0;
  color:#D7D7D7;
  font-size: 1.125rem;
  cursor:default;
  border-top:1px solid #40424D;
}

.pricing .pricing-item ul li.last {
	border-bottom:1px solid #40424D;
}

.pricing-item h3, .pricing-item h4 {
  color:#F5F5F5 !important;
}

.pricing .pricing-item ul .na {
  /*color: color-mix(in srgb, var(--default-color), transparent 40%);*/
  text-decoration: line-through;
}

.pricing .btn-wrap {
  background: color-mix(in srgb, var(--default-color), transparent 95%);
  padding: 1.25rem 0;
  text-align: center;
}

.pricing .btn-buy {
  background: var(--accent-color);
  color: var(--contrast-color);
  display: inline-block;
  padding: 8px 35px 10px 35px;
  border-radius: 10px;
  transition: none;
  font-size: 1.375rem;
  font-family: var(--heading-font);
  font-weight: bold;
  transition: 0.3s;
}

.pricing .btn-buy:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.pricing .featured h3 {
  /*background: var(--accent-color);*/
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.pricing .advanced {
  background: var(--accent-color);
  color: var(--contrast-color);
  width: 200px;
  position: absolute;
  top: 1.125rem;
  right: -68px;
  transform: rotate(45deg);
  z-index: 1;
  font-size: 0.875rem;
  padding: 1px 0 3px 0;
  font-weight:bold;
}

/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq .content-subtitle {
  font-size: 15px;
  margin-bottom: 10px;
  display: block;
  color: var(--default-color);
}

.faq .content-title {
  color: var(--heading-color);
  font-size: 1.375rem;
  margin-bottom: 1.875rem;
}

.faq p {
  line-height: 1.7;
  color: var(--default-color);
}

.faq .custom-accordion .accordion-item {
  background-color: var(--surface-color);
  margin-bottom: 0px;
  position: relative;
  border-radius: 0px;
  overflow: hidden;
}

.faq .custom-accordion .accordion-item .btn-link {
  display: block;
  width: 100%;
  padding: 15px 0;
  text-decoration: none;
  text-align: left;
  color: #C75A0D;
  border: none;
  padding-left: 40px;
  border-bottom:1px solid #EFE3DA;
  border-radius: 0;
  position: relative;
  background-color: #ECC7AC;
}

/*.faq .custom-accordion .accordion-item .btn-link:before {
  content: "\f282";
  display: inline-block;
  font-family: "bootstrap-icons" !important;
  font-style: normal;
  font-weight: normal !important;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  vertical-align: -0.125em;
  -webkit-font-smoothing: antialiased;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 15px;
}

.faq .custom-accordion .accordion-item .btn-link[aria-expanded=true] {
  color: var(--accent-color);
}

.faq .custom-accordion .accordion-item .btn-link[aria-expanded=true]:before {
  font-family: "bootstrap-icons" !important;
  content: "\f286";
  position: absolute;
  color: var(--accent-color);
  top: 50%;
  transform: translateY(-50%);
}*/

.faq .custom-accordion .accordion-item .accordion-body {
  padding: 1.25rem;
  color: var(--default-color);
  background-color:#EFE3DA;
}
.faq .custom-accordion .accordion-item .last {
  padding: 1.25rem 1.25rem 0;
}

/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
.team .team-member {
  background-color: var(--surface-color);
  overflow: hidden;
  border-radius: 5px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  height: 100%;
}

.team .team-member .member-img {
  position: relative;
  overflow: hidden;
}

.team .team-member .social {
  position: absolute;
  left: 0;
  bottom: 1.875rem;
  right: 0;
  opacity: 0;
  transition: ease-in-out 0.3s;
  text-align: center;
}

.team .team-member .social a {
  background: color-mix(in srgb, var(--contrast-color), transparent 25%);
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 0 3px;
  border-radius: 4px;
  width: 2.25rem;
  height: 2.25rem;
  transition: ease-in-out 0.3s;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.team .team-member .social a:hover {
  color: var(--contrast-color);
  background: var(--accent-color);
}

.team .team-member .social i {
  font-size: 1.125rem;
  line-height: 0;
}

.team .team-member .member-info {
  padding: 25px 15px;
}

.team .team-member .member-info h4 {
  font-weight: bold;
  margin-bottom: 5px;
  font-size: 1.125rem;
}

.team .team-member .member-info span {
  display: block;
  font-size: 13px;
  font-weight: bold;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.team .team-member:hover .social {
  opacity: 1;
  bottom: 15px;
}

/*--------------------------------------------------------------
# Recent Posts Section
--------------------------------------------------------------*/
.recent-posts article {
  background: var(--surface-color);
  box-shadow: 0 4px 1rem rgba(0, 0, 0, 0.1);
  padding: 1.875rem;
  height: 100%;
  border-radius: 10px;
  overflow: hidden;
}

.recent-posts .post-img {
  max-height: 240px;
  margin: -1.875rem -1.875rem 15px -1.875rem;
  overflow: hidden;
}

.recent-posts .post-category {
  font-size: 1rem;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  margin-bottom: 10px;
}

.recent-posts .title {
  font-size: 1.25rem;
  font-weight: bold;
  padding: 0;
  margin: 0 0 1.25rem 0;
}

.recent-posts .title a {
  color: var(--heading-color);
  transition: 0.3s;
}

.recent-posts .title a:hover {
  color: var(--accent-color);
}

.recent-posts .post-author-img {
  width: 50px;
  border-radius: 50%;
  margin-right: 15px;
}

.recent-posts .post-author {
  font-weight: bold;
  margin-bottom: 5px;
}

.recent-posts .post-date {
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  margin-bottom: 0;
}

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

.contact .info-item i {
  color: var(--accent-color);
  background: color-mix(in srgb, var(--accent-color), transparent 92%);
  font-size: 1.25rem;
  width: 2.75rem;
  height: 2.75rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
  margin-right: 15px;
}

.contact .info-item h3 {
  padding: 0;
  font-size: 1.125rem;
  font-weight: bold;
  margin-bottom: 5px;
}

.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 0.875rem;
}

.contact .info-item:hover i {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.contact .php-email-form {
  height: 100%;
}

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email],
.contact .php-email-form textarea {
  font-size: 0.875rem;
  padding: 10px 15px;
  box-shadow: none;
  border-radius: 0;
  color: var(--default-color);
  background-color: color-mix(in srgb, var(--background-color), transparent 50%);
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.contact .php-email-form input[type=text]:focus,
.contact .php-email-form input[type=email]:focus,
.contact .php-email-form textarea:focus {
  border-color: var(--accent-color);
}

.contact .php-email-form input[type=text]::placeholder,
.contact .php-email-form input[type=email]::placeholder,
.contact .php-email-form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.contact .php-email-form button[type=submit] {
  color: var(--contrast-color);
  background: var(--accent-color);
  border: 0;
  padding: 10px 1.875rem;
  transition: 0.4s;
  border-radius: 50px;
}

.contact .php-email-form button[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 25%);
}

/*--------------------------------------------------------------
# Portfolio Details Section
--------------------------------------------------------------*/
.portfolio-details .portfolio-details-slider img {
  width: 100%;
}

.portfolio-details .swiper-wrapper {
  height: auto;
}

.portfolio-details .swiper-button-prev,
.portfolio-details .swiper-button-next {
  width: 3rem;
  height: 3rem;
}

.portfolio-details .swiper-button-prev:after,
.portfolio-details .swiper-button-next:after {
  color: rgba(255, 255, 255, 0.8);
  background-color: rgba(0, 0, 0, 0.15);
  font-size: 1.5rem;
  border-radius: 50%;
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.portfolio-details .swiper-button-prev:hover:after,
.portfolio-details .swiper-button-next:hover:after {
  background-color: rgba(0, 0, 0, 0.3);
}

.portfolio-details .swiper-pagination {
  margin-top: 1.25rem;
  position: relative;
}

.portfolio-details .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: color-mix(in srgb, var(--default-color), transparent 85%);
  opacity: 1;
}

.portfolio-details .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

.portfolio-details .portfolio-info h3 {
  font-size: 1.375rem;
  font-weight: bold;
  margin-bottom: 1.25rem;
  padding-bottom: 1.25rem;
  position: relative;
}

.portfolio-details .portfolio-info h3:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  bottom: 0;
}

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

.portfolio-details .portfolio-info ul li {
  display: flex;
  flex-direction: column;
  padding-bottom: 15px;
}

.portfolio-details .portfolio-info ul strong {
  text-transform: uppercase;
  font-weight: bold;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 0.875rem;
}

.portfolio-details .portfolio-info .btn-visit {
  padding: 8px 40px;
  background: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 50px;
  transition: 0.3s;
}

.portfolio-details .portfolio-info .btn-visit:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.portfolio-details .portfolio-description h2 {
  font-size: 1.625rem;
  font-weight: bold;
  margin-bottom: 1.25rem;
}

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

.portfolio-details .portfolio-description .testimonial-item {
  padding: 1.875rem 1.875rem 0 1.875rem;
  position: relative;
  background: color-mix(in srgb, var(--default-color), transparent 97%);
  margin-bottom: 50px;
}

.portfolio-details .portfolio-description .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50px;
  border: 6px solid var(--background-color);
  float: left;
  margin: 0 10px 0 0;
}

.portfolio-details .portfolio-description .testimonial-item h3 {
  font-size: 1.125rem;
  font-weight: bold;
  margin: 15px 0 5px 0;
  padding-top: 1.25rem;
}

.portfolio-details .portfolio-description .testimonial-item h4 {
  font-size: 0.875rem;
  color: #6c757d;
  margin: 0;
}

.portfolio-details .portfolio-description .testimonial-item .quote-icon-left,
.portfolio-details .portfolio-description .testimonial-item .quote-icon-right {
  color: color-mix(in srgb, var(--accent-color), transparent 50%);
  font-size: 1.625rem;
  line-height: 0;
}

.portfolio-details .portfolio-description .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.portfolio-details .portfolio-description .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  transform: scale(-1, -1);
}

.portfolio-details .portfolio-description .testimonial-item p {
  font-style: italic;
  margin: 0 0 15px 0 0 0;
  padding: 0;
}

/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .service-box {
  background-color: var(--surface-color);
  padding: 1.25rem;
  box-shadow: 0px 2px 1.25rem rgba(0, 0, 0, 0.1);
}

.service-details .service-box+.service-box {
  margin-top: 1.875rem;
}

.service-details .service-box h4 {
  font-size: 1.25rem;
  font-weight: bold;
  border-bottom: 2px solid color-mix(in srgb, var(--default-color), transparent 92%);
  padding-bottom: 15px;
  margin-bottom: 15px;
}

.service-details .services-list {
  background-color: var(--surface-color);
}

.service-details .services-list a {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  display: flex;
  align-items: center;
  padding: 12px 15px;
  margin-top: 15px;
  transition: 0.3s;
}

.service-details .services-list a:first-child {
  margin-top: 0;
}

.service-details .services-list a i {
  font-size: 1rem;
  margin-right: 8px;
  color: var(--accent-color);
}

.service-details .services-list a.active {
  color: var(--contrast-color);
  background-color: var(--accent-color);
}

.service-details .services-list a.active i {
  color: var(--contrast-color);
}

.service-details .services-list a:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  color: var(--accent-color);
}

.service-details .download-catalog a {
  color: var(--default-color);
  display: flex;
  align-items: center;
  padding: 10px 0;
  transition: 0.3s;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.service-details .download-catalog a:first-child {
  border-top: 0;
  padding-top: 0;
}

.service-details .download-catalog a:last-child {
  padding-bottom: 0;
}

.service-details .download-catalog a i {
  font-size: 1.5rem;
  margin-right: 8px;
  color: var(--accent-color);
}

.service-details .download-catalog a:hover {
  color: var(--accent-color);
}

.service-details .help-box {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  margin-top: 1.875rem;
  padding: 1.875rem 15px;
}

.service-details .help-box .help-icon {
  font-size: 3rem;
}

.service-details .help-box h4,
.service-details .help-box a {
  color: var(--contrast-color);
}

.service-details .services-img {
  margin-bottom: 1.25rem;
}

.service-details h3 {
  font-size: 1.625rem;
  font-weight: bold;
}

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

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

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

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

/*--------------------------------------------------------------
# Starter Section
--------------------------------------------------------------*/
.starter-section {
  padding-bottom:28px !important;
}

/*--------------------------------------------------------------
# Blog Posts Section
--------------------------------------------------------------*/
.blog-posts article {
  background-color: var(--surface-color);
  box-shadow: 0 4px 1rem rgba(0, 0, 0, 0.1);
  padding: 1.875rem;
  height: 100%;
  border-radius: 10px;
  overflow: hidden;
}

.blog-posts .post-img {
  max-height: 240px;
  margin: -1.875rem -1.875rem 15px -1.875rem;
  overflow: hidden;
}

.blog-posts .post-category {
  font-size: 1rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 10px;
}

.blog-posts .title {
  font-size: 1.25rem;
  font-weight: bold;
  padding: 0;
  margin: 0 0 1.25rem 0;
}

.blog-posts .title a {
  color: var(--heading-color);
  transition: 0.3s;
}

.blog-posts .title a:hover {
  color: var(--accent-color);
}

.blog-posts .post-author-img {
  width: 50px;
  border-radius: 50%;
  margin-right: 15px;
}

.blog-posts .post-author {
  font-weight: bold;
  margin-bottom: 5px;
}

.blog-posts .post-date {
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Blog Pagination Section
--------------------------------------------------------------*/
.blog-pagination {
  padding-top: 0;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

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

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

.blog-pagination li a {
  color: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  border: 1px solid var(--accent-color);
}

.blog-pagination li a.active,
.blog-pagination li a:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.blog-pagination li a.active a,
.blog-pagination li a:hover a {
  color: var(--contrast-color);
}

/*--------------------------------------------------------------
# Blog Details Section
--------------------------------------------------------------*/
.blog-details {
  padding-bottom: 1.875rem;
}

.blog-details .article {
  background-color: var(--surface-color);
  padding: 1.875rem;
  box-shadow: 0 4px 1rem rgba(0, 0, 0, 0.1);
}

.blog-details .post-img {
  margin: -1.875rem -1.875rem 1.25rem -1.875rem;
  overflow: hidden;
}

.blog-details .title {
  color: var(--heading-color);
  font-size: 1.75rem;
  font-weight: bold;
  padding: 0;
  margin: 1.875rem 0;
}

.blog-details .content {
  margin-top: 1.25rem;
}

.blog-details .content h3 {
  font-size: 1.375rem;
  margin-top: 1.875rem;
  font-weight: bold;
}

.blog-details .content blockquote {
  overflow: hidden;
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
  padding: 60px;
  position: relative;
  text-align: center;
  margin: 1.25rem 0;
}

.blog-details .content blockquote p {
  color: var(--default-color);
  line-height: 1.6;
  margin-bottom: 0;
  font-style: italic;
  font-weight: bold;
  font-size: 1.375rem;
}

.blog-details .content blockquote:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background-color: var(--accent-color);
  margin-top: 1.25rem;
  margin-bottom: 1.25rem;
}

.blog-details .meta-top {
  margin-top: 1.25rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

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

.blog-details .meta-top ul li+li {
  padding-left: 1.25rem;
}

.blog-details .meta-top i {
  font-size: 1rem;
  margin-right: 8px;
  line-height: 0;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-details .meta-top a {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 0.875rem;
  display: inline-block;
  line-height: 1;
}

.blog-details .meta-bottom {
  padding-top: 10px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.blog-details .meta-bottom i {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  display: inline;
}

.blog-details .meta-bottom a {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  transition: 0.3s;
}

.blog-details .meta-bottom a:hover {
  color: var(--accent-color);
}

.blog-details .meta-bottom .cats {
  list-style: none;
  display: inline;
  padding: 0 1.25rem 0 0;
  font-size: 0.875rem;
}

.blog-details .meta-bottom .cats li {
  display: inline-block;
}

.blog-details .meta-bottom .tags {
  list-style: none;
  display: inline;
  padding: 0;
  font-size: 0.875rem;
}

.blog-details .meta-bottom .tags li {
  display: inline-block;
}

.blog-details .meta-bottom .tags li+li::before {
  padding-right: 6px;
  color: var(--default-color);
  content: ",";
}

.blog-details .meta-bottom .share {
  font-size: 1rem;
}

.blog-details .meta-bottom .share i {
  padding-left: 5px;
}

/*--------------------------------------------------------------
# Blog Comments Section
--------------------------------------------------------------*/
.blog-comments {
  padding: 10px 0;
}

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

.blog-comments .comment {
  margin-top: 1.875rem;
  position: relative;
}

.blog-comments .comment .comment-img {
  margin-right: 0.875rem;
}

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

.blog-comments .comment h5 {
  font-size: 1rem;
  margin-bottom: 2px;
}

.blog-comments .comment h5 a {
  font-weight: bold;
  color: var(--default-color);
  transition: 0.3s;
}

.blog-comments .comment h5 a:hover {
  color: var(--accent-color);
}

.blog-comments .comment h5 .reply {
  padding-left: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.blog-comments .comment h5 .reply i {
  font-size: 1.25rem;
}

.blog-comments .comment time {
  display: block;
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 5px;
}

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

/*--------------------------------------------------------------
# Comment Form Section
--------------------------------------------------------------*/
.comment-form {
  padding-top: 10px;
}

.comment-form form {
  background-color: var(--surface-color);
  margin-top: 1.875rem;
  padding: 1.875rem;
  box-shadow: 0 4px 1rem rgba(0, 0, 0, 0.1);
}

.comment-form form h4 {
  font-weight: bold;
  font-size: 1.375rem;
}

.comment-form form p {
  font-size: 0.875rem;
}

.comment-form form input {
  background-color: var(--surface-color);
  color: var(--default-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 70%);
  font-size: 0.875rem;
  border-radius: 4px;
  padding: 10px 10px;
}

.comment-form form input:focus {
  color: var(--default-color);
  background-color: var(--surface-color);
  box-shadow: none;
  border-color: var(--accent-color);
}

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

.comment-form form textarea {
  background-color: var(--surface-color);
  color: var(--default-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 70%);
  border-radius: 4px;
  padding: 10px 10px;
  font-size: 0.875rem;
  height: 11.25rem;
}

.comment-form form textarea:focus {
  color: var(--default-color);
  box-shadow: none;
  border-color: var(--accent-color);
  background-color: var(--surface-color);
}

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

.comment-form form .form-group {
  margin-bottom: 25px;
}

.comment-form form .btn-primary {
  border-radius: 4px;
  padding: 10px 1.25rem;
  border: 0;
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.comment-form form .btn-primary:hover {
  color: var(--contrast-color);
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
}

/*--------------------------------------------------------------
# Widgets
--------------------------------------------------------------*/
.widgets-container {
  margin: 60px 0 1.875rem 0;
}

.widget-title {
  color: var(--heading-color);
  font-size: 1.25rem;
  font-weight: bold;
  padding: 0 0 0 10px;
  margin: 0 0 1.25rem 0;
  border-left: 4px solid var(--accent-color);
}

.widget-item {
  margin-bottom: 1.875rem;
  background-color: color-mix(in srgb, var(--default-color), transparent 98%);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  padding: 1.875rem;
  border-radius: 5px;
}

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

.blog-author-widget img {
  max-width: 160px;
}

.blog-author-widget h4 {
  font-weight: bold;
  font-size: 1.5rem;
  margin: 15px 0 0 0;
  padding: 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

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

.blog-author-widget .social-links a {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  margin: 0 3px;
  font-size: 1.125rem;
}

.blog-author-widget .social-links a:hover {
  color: var(--accent-color);
}

.blog-author-widget p {
  font-style: italic;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 10px 0 0 0;
}

.search-widget form {
  background: var(--background-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 75%);
  padding: 3px 10px;
  position: relative;
  border-radius: 50px;
  transition: 0.3s;
}

.search-widget form input[type=text] {
  border: 0;
  padding: 4px 10px;
  border-radius: 4px;
  width: calc(100% - 40px);
  background-color: var(--background-color);
  color: var(--default-color);
}

.search-widget form input[type=text]:focus {
  outline: none;
}

.search-widget form button {
  background: none;
  color: var(--default-color);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  font-size: 1rem;
  padding: 0 1rem;
  transition: 0.3s;
  line-height: 0;
}

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

.search-widget form button:hover {
  color: var(--accent-color);
}

.search-widget form:is(:focus-within) {
  border-color: var(--accent-color);
}

.categories-widget ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.categories-widget ul li {
  padding-bottom: 10px;
}

.categories-widget ul li:last-child {
  padding-bottom: 0;
}

.categories-widget ul a {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  transition: 0.3s;
}

.categories-widget ul a:hover {
  color: var(--accent-color);
}

.categories-widget ul a span {
  padding-left: 5px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 0.875rem;
}

.recent-posts-widget .post-item {
  display: flex;
  flex-direction: column;
  margin-bottom: 1.25rem;
}

.recent-posts-widget .post-item:last-child {
  margin-bottom: 0;
}

.recent-posts-widget .post-item h4 {
  font-size: 1rem;
  font-weight: bold;
  margin-bottom: 5px;
}

.recent-posts-widget .post-item h4 a {
  color: var(--default-color);
  transition: 0.3s;
}

.recent-posts-widget .post-item h4 a:hover {
  color: var(--accent-color);
}

.recent-posts-widget .post-item time {
  display: block;
  font-style: italic;
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.tags-widget ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

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

.tags-widget ul a {
  background-color: color-mix(in srgb, var(--default-color), transparent 94%);
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  border-radius: 50px;
  font-size: 0.875rem;
  padding: 5px 15px;
  margin: 0 6px 8px 0;
  display: inline-block;
  transition: 0.3s;
}

.tags-widget ul a:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.tags-widget ul a span {
  padding-left: 5px;
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  font-size: 0.875rem;
}

/*--------------------------------------------------------------
# Package Section
--------------------------------------------------------------*/

.packages/*, .ai*/ {
  /*margin-top:47px !important;*/
  margin-top: 1rem !important;
}
.packages.mt-0 {
  margin-top: 0 !important;
}


.packages h1, .ai h1, .why-us h1 {
  font-size: 1.5rem;
  font-weight: bold;
  padding: 0;
  line-height: 1px;
  margin: 0;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  /*color: color-mix(in srgb, var(--default-color), transparent 50%);*/
  color:#EF6603;
  position: relative;
}

.packages h1::after, .ai h1:after, .why-us h1:after {
  content: "";
  width: 11.25rem;
  height: 1px;
  display: inline-block;
  background: var(--accent-color);
  margin: 4px 10px;
}

.packages h3, .ai h3, .why-us h3 {
  color: var(--heading-color) !important;
  margin: 0 0 30px;
  font-size: 2.25rem;
  font-weight: 500;
  text-transform: capitalize;
  font-family: var(--heading-font);
  /*text-align:center;*/
}
h3.home-h3 {
  color:#EF6603 !important;
}
.ai-2 h3, .vps h3 {
  font-size:1.75rem;
  margin-top:20px;
  margin-bottom:10px;
}
.why-us h3 {
  color: #C75A0D;
}

.packages p, .ai p, .why-us p {
  margin:0;
}

.packages span, .ai span, .why-us span, .span-2 {
  font-size:1.5rem;
  font-weight:bold;
  text-decoration:underline;
}

.span-2 {
  text-decoration:none;
}

.techs span.heading {
  font-family: var(--heading-font);
  font-size:1.25rem;
  font-weight:500;
  color:#C75A0D;
  text-decoration:none;
}
.techs li div {
  margin-left:45px;
}

/*--------------------------------------------------------------
# Custom Pricing Table
--------------------------------------------------------------*/

/* Make the row horizontally scrollable when content overflows */

/* Main container for pricing table */
.pricing-table-container {
  position: relative; 
  overflow: hidden;
  width:auto;
  height:auto;
  margin: 0 auto;           /* Center it within the parent */
  padding:0 6.25% !important;
  box-sizing: border-box;   /* Ensure padding is included in width calculation */
}

/* Pricing table setup */
.pricing-table {
  width:auto;
  max-width:100%;
  display: flex;              
  overflow-x: auto;           /* Allow horizontal scrolling */
  flex-wrap: nowrap;         
  justify-content: flex-start; 
  scroll-behavior: smooth;    /* Smooth scrolling */
  padding: 0; 
  gap: 10px;                 
  -ms-overflow-style: none;   /* Remove scrollbar for IE and Edge */
  scrollbar-width: none;      /* Remove scrollbar for Firefox */
  margin: 0 auto;             /* To keep contianer to center on larger screens */
  background: #ffffff;
}

.pricing-table .ptable-item {
  padding: 0 15px;
  margin-bottom: 30px;
}

.pricing-table .ptable-item.last {
  padding: 0 0 0 15px;
}

.pricing-table .ptable-single {
  position: relative;
  width: 100%;
  overflow: hidden;
  bordder-radius:10px;
}

.pricing-table .ptable-header,
.pricing-table .ptable-body,
.pricing-table .ptable-footer {
  position: relative;
  width: 100%;
  text-align: center;
  overflow: hidden;
}

.pricing-table .ptable-status,
.pricing-table .ptable-title,
.pricing-table .ptable-price,
.pricing-table .ptable-description,
.pricing-table .ptable-action {
  position: relative;
  width: 100%;
  text-align: center;
}

.pricing-table .ptable-single {
  background: #F9F9F9;
  border-radius:10px;
}

.pricing-table .ptable-single:hover {
  box-shadow: inset 0 0 5px #666B8B;
  border-radius:10px;
  cursor:default;
}

.pricing-table .ptable-header {
  margin: 0 30px;
  padding: 30px 0 45px 0;
  width: auto;
  background: #2A2C39;
}

.pricing-table .ptable-header::before,
.pricing-table .ptable-header::after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 0;
  height: 0;
  border-bottom: 100px solid #F9F9F9;
}

.pricing-table .ptable-header::before {
  right: 50%;
  border-right: 250px solid transparent;
}

.pricing-table .ptable-header::after {
  left: 50%;
  border-left: 250px solid transparent;
}

.pricing-table .ptable-item.featured-item .ptable-header {
  background: #C75A0D;
}

.pricing-table .ptable-status {
  margin-top: -30px;
}

.pricing-table .ptable-status span {
  position: relative;
  display: inline-block;
  width: 49px;
  height: 30px;
  padding: 5px 0;
  text-align: center;
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 1px;
  background: #2A2C39;
}

.pricing-table .ptable-status span::before,
.pricing-table .ptable-status span::after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 0;
  height: 0;
  border-bottom: 10px solid #C75A0D;
}

.pricing-table .ptable-status span::before {
  right: 50%;
  border-right: 25px solid transparent;
}

.pricing-table .ptable-status span::after {
  left: 50%;
  border-left: 25px solid transparent;
}

.pricing-table .ptable-title h2 {
  color: #ffffff;
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 2px;
}

.pricing-table .ptable-price h2 {
  margin: 0;
  color: #ffffff;
  font-size: 45px;
  font-weight: 700;
  margin-left: 15px;
}

.pricing-table .ptable-price h2 small {
  position: absolute;
  font-size: 18px;
  font-weight: 300;
  margin-top: 16px;
  margin-left: -30px;
}

.pricing-table .ptable-price h2 span {
  margin-left: 3px;
  font-size: 16px;
  font-weight: 300;
}

.pricing-table .ptable-body {
  /*padding: 20px 0;*/
}

.pricing-table .p-btn {
  padding: 30px 0 32px;
}

.pricing-table .ptable-description ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.pricing-table .ptable-description ul li {
  color: #2A2C39;
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 1px;
  padding: 7px;
  border-bottom: 1px solid #dedede;
}

.pricing-table .ptable-description ul li.des {
  background-color:#FFA500;
  color:#FFFFFF;
}

.pricing-table .ptable-description ul li.view-details {
  background-color:#EFE3DA;
  color:#2A2C39;
  /*margin-top:38px;*/
  font-weight:bold;
  text-decoration:underline;
  cursor:pointer;
}
.pricing-table .ptable-description ul li.view-details:hover {
  color:#000000 !important;
  background-color:#ECC7AC !important;
}
.pricing-table .ptable-single:hover .ptable-description ul li.view-details {
  background-color: #FFA500; /* Orange color */
}
.pricing-table .ptable-description .details-container {
  /*display:none;*/
  max-height: 0; /* Initially hidden */
  overflow: hidden; /* Ensures content doesn't spill over */
  transition: max-height 0.3s ease-in-out; /* Smooth transition */
}
.pricing-table .ptable-description .details-container.show {
  max-height: 1000px; /* Adjust to the approximate height of the content */
}

.pricing-table .ptable-description ul li:last-child {
  /*border: none;*/
}

.pricing-table .ptable-footer {
  padding-bottom: 30px;
}

.pricing-table .ptable-action a {
  display: inline-block;
  padding: 10px 20px;
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 2px;
  text-decoration: none;
  background: #2A2C39;
  border-radius:5px;
}

.pricing-table .ptable-action a:hover {
  color: #2A2C39;
  background: #C75A0D;
}

.pricing-table .ptable-item.featured-item .ptable-action a {
  color: #FFFFFF;
  background: #C75A0D;
}

.pricing-table .ptable-item.featured-item .ptable-action a:hover {
  color: #EF6603;
  background: #2A2C39;
}

/* Styling for the left and right arrows */
.scroll-left, .scroll-right {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2rem;
  background-color: rgba(42, 44, 57, 0.5);
  color: #fff;
  border: none;
  padding: 10px;
  cursor: pointer;
  z-index: 10;
}

#scroll-left {
  left: 10px;
}

#scroll-right {
  right: 10px;
}

/* Pricing table setup */
.pricing-table {
  display: flex;
  overflow: hidden;         /* Hides native horizontal scrollbar */
  flex-wrap: nowrap;        /* Prevent wrapping of columns */
  scroll-behavior: smooth;  /* Smooth scrolling */
  margin: 0;                /* No margin */
  padding: 0;               /* No padding */
  gap: 10px;                /* Space between columns */
  -ms-overflow-style: none; /* Remove scrollbar for IE and Edge */
  scrollbar-width: none;    /* Remove scrollbar for Firefox */
}

.pricing-table::-webkit-scrollbar {
  display: none;            /* Remove scrollbar for Chrome, Safari */
}

.no-shrink {
  flex: 0 0 auto;
  width:33%;             /* Allow columns to take up 1/3 of row */
  min-width:400px;
  max-width: 430px;
}

@supports (-ms-ime-align: auto) {
  .pricing-table {
    overflow-x: auto;             
    -ms-overflow-style: auto;     
  }

  .pricing-table::-webkit-scrollbar {
    display: none;                
  }
}