/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */
:root {
  --default-font: "Montserrat",  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: "Montserrat",  sans-serif;
  --nav-font: "Montserrat",  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: #212529; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #0e1c07; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #5ed49b; /* 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: #212529;  /* The default color of the main navmenu links */
  --nav-hover-color: #5ed49b; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: rgba(94, 212, 155, 0.135); /* 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: #5ed49b; /* 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: rgba(94, 212, 155, 0.17);
  --surface-color: #86dfb42b;
}

.dark-background {
  --background-color: rgba(255, 254, 254, 0.6);
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #ffffff99;
  --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: 24px;
  font-weight: 600;
}

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

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

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  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: #5ed49b;
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 12px 0;
  transition: all 0.5s;
  z-index: 997;
}

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

.header .logo img {
  max-height: 120px;
  margin-right: 10px;
}

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

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

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
@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: 12px 12px;
    margin-left: 2px;
    font-size: 18px;
    font-family: var(--nav-font);
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

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

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

  .navmenu .dropdown ul {
    margin: 0;
    padding: 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 2px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    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;
    margin: 0;
    font-size: 18px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

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

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: var(--contrast-color);
    background-color: var(--nav-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;
  }
}

/* Mobile Navigation */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 20px;
    line-height: 0;
    margin-right: 5px;
    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-dropdown-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(2, 2, 2, 0.983);
  }

  .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: 30px;
    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;
  }
}

/* Listing Dropdown - Desktop */
@media (min-width: 1200px) {
  .navmenu .listing-dropdown {
    position: static;
  }

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

  .navmenu .listing-dropdown ul li {
    flex: 1;
  }

  .navmenu .listing-dropdown ul li a,
  .navmenu .listing-dropdown ul li:hover>a {
    padding: 10px 20px;
    font-size: 20px;
    color: var(--nav-dropdown-color);
    background-color: var(--nav-dropdown-background-color);
  }

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

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

/* Listing Dropdown - Mobile */
@media (max-width: 1199px) {
  .navmenu .listing-dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 10px;
    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 .listing-dropdown ul ul {
    background-color: var(--background-color);
  }

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

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  --background-color: #5ed49b;
  --heading-color: #0c343d;
  --accent-color: #5ed49b;
  color: var(--default-color);
  background-color: var(--background-color);
  font-size: 14px;
  position: relative;
}

.footer .footer-bottom {
  background-color: color-mix(in srgb, var(--default-color), transparent 90%);
  padding: 25px 0;
}

.footer .footer-bottom span {
  margin-right: 15px;
  font-weight: 500;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.footer .footer-bottom .social-icons {
  display: flex;
  gap: 16px;
}

.footer .footer-bottom .social-icons i {
  font-size: 30px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  transition: color 0.3s ease;
}

.footer .footer-bottom .social-icons i:hover {
  color: var(--contrast-color);
}

.footer .footer-bottom .payment-methods {
  display: flex;
  align-items: center;
}

.footer .footer-bottom .payment-methods span {
  margin-right: 15px;
  font-weight: 500;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.footer .footer-bottom .payment-methods .social-icons {
  display: flex;
  gap: 12px;
}

.footer .footer-bottom .payment-methods .social-icons i {
  font-size: 22px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  transition: color 0.3s ease;
}

.footer .footer-bottom .payment-methods .social-icons i:hover {
  color: var(--contrast-color);
}

.footer .footer-bottom .copyright {
  padding-top: 0;
}

.footer .footer-bottom .copyright2 {
  font-size: 13px;
  font-weight: 300;
  text-align: center;
}

.footer .footer-bottom .copyright p {
  margin-bottom: 0;
  font-size: 15px;
  font-weight: 500;
}

.footer .footer-bottom .copyright p strong {
  color: color-mix(in srgb, var(--default-color), transparent 10%);
}

.footer .footer-bottom .credits {
  text-align: center;
  padding-top: 5px;
}

.footer .footer-bottom .legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  padding: 20px 0 10px 0;
}

.footer .footer-bottom .legal-links a {
  color: color-mix(in srgb, var(--default-color), transparent 5%);
  font-size: 18px;
  font-weight: 600;
  transition: color 0.3s ease;
}

.footer .footer-bottom .legal-links a:hover {
  color: var(--contrast-color);
}

@media (max-width: 991.98px) {
  .footer .footer-newsletter {
    padding: 50px 0;
  }

  .footer .footer-newsletter h2 {
    font-size: 28px;
  }
}

@media (max-width: 767.98px) {
  .footer .footer-bottom .payment-methods {
    justify-content: center;
    margin-bottom: 15px;
  }

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

  .footer .app-buttons {
    justify-content: center;
  }

  .footer .social-icons {
    justify-content: center;
  }
}

/*--------------------------------------------------------------
# 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;
  display: flex;
  align-items: center;
  justify-content: center;
}

#preloader div {
  width: 13px;
  height: 13px;
  background-color: var(--accent-color);
  border-radius: 50%;
  animation-timing-function: cubic-bezier(0, 1, 1, 0);
  position: absolute;
  left: 50%;
}

#preloader div:nth-child(1) {
  left: calc(50% + 8px);
  animation: animate-preloader-1 0.6s infinite;
}

#preloader div:nth-child(2) {
  left: calc(50% + 8px);
  animation: animate-preloader-2 0.6s infinite;
}

#preloader div:nth-child(3) {
  left: calc(50% + 32px);
  animation: animate-preloader-2 0.6s infinite;
}

#preloader div:nth-child(4) {
  left: calc(50% + 56px);
  animation: animate-preloader-3 0.6s infinite;
}

@keyframes animate-preloader-1 {
  0% {
    transform: scale(0);
  }

  100% {
    transform: scale(1);
  }
}

@keyframes animate-preloader-3 {
  0% {
    transform: scale(1);
  }

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

@keyframes animate-preloader-2 {
  0% {
    transform: translate(0, 0);
  }

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

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  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;
}

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

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  position: relative;
}

.page-title .heading {
  padding: 80px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.page-title .heading h1 {
  font-size: 40px;
  font-weight: 700;
}

.page-title nav {
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
  padding: 20px 0;
}

.page-title nav ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}

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

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

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

@media (max-width: 1199px) {

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

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 50px;
  position: relative;
}

.section-title h2 {
  font-size: 40px;
  font-weight: 500;
  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;
}

/*--------------------------------------------------------------
# Inicio Section
--------------------------------------------------------------*/
.inicio {
  width: 100%;
  min-height: 50vh;
  position: relative;
  padding: 0px 0 0px 0;
  display: flex;
  align-items: center;
  background: url("../img/hero-bg.png") center center;
  background-size: cover;
}

.inicio h1 {
  margin: 0px 0px 25px 0px;
  font-size: 50px;
  font-weight: 500;
}

.inicio h1 span {
  color: var(--accent-color);
}

.inicio p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 0 0 0 0;
  font-size: 30px;
  font-weight: 600;
}

.inicio .goverlay1 {
  width: 100%;
  height: calc(100vh + 1px);
  position: fixed;
  top: -1px;
  left: 0;
  background: rgba(0, 0, 0, 0.051);
  will-change: opacity;
}

.inicio .glightbox-mobile1 .goverlay1 {
  background: rgba(0, 0, 0, 0.051);
}

.inicio .btn-get-started {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 24px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 20px;
  border-radius: 50px;
  transition: 0.5s;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}

.inicio .btn-get-started i {
  color: var(--contrast-color);
  font-size: 40px;
  transition: 0.3s;
  line-height: 0;
  margin-right: 10px;
}

.inicio .btn-get-started:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}

.inicio .btn-watch-video {
  font-size: 24px;
  transition: 0.5s;
  margin-left: 10px;
  margin-right: 10px;
  color: var(--default-color);
  font-weight: 500;
}

.inicio .btn-watch-video i {
  color: var(--accent-color);
  font-size: 42px;
  transition: 0.3s;
  line-height: 0;
  margin-right: 10px;
  margin-left: 10px;
}

.inicio .btn-watch-video:hover {
  color: var(--accent-color);
}

.inicio .btn-watch-video:hover i {
  color: color-mix(in srgb, var(--accent-color), transparent 15%);
}

.inicio .animated {
  margin-bottom: 5px;
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

@media (min-width: 992px) {
  .inicio .animated {
    max-width: 45%;
  }
}

@media (max-width: 991px) {
  .inicio .animated {
    max-width: 60%;
  }
}

@media (max-width: 575px) {
  .inicio .animated {
    max-width: 80%;
  }
}

@media (max-width: 640px) {
  .inicio h1 {
    font-size: 28px;
    line-height: 30px;
  }

  .inicio p {
    font-size: 18px;
    line-height: 30px;
    margin-bottom: 5px;
  }

  .inicio .btn-get-started,
  .inicio .btn-watch-video {
    font-size: 16px;
  }
  .inicio .btn-watch-video i {
    font-size: 30px;
    margin-right: 5px;
  }

}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }

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

/*--------------------------------------------------------------
# Services 2 Section
--------------------------------------------------------------*/
.services-2 .service-item {
  position: relative;
  padding-top: 50px;
}

.services-2 .service-item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: color-mix(in srgb, var(--default-color), transparent 80%);
}

.services-2 .service-item::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--accent-color);
  border-right: 5px solid var(--background-color);
}

.services-2 .service-item .icon {
  width: 60px;
  height: 60px;
  position: relative;
  margin-right: 50px;
  line-height: 30px;
}

.services-2 .service-item .icon i {
  color: color-mix(in srgb, var(--default-color), transparent 15%);
  font-size: 70px;
  transition: ease-in-out 0.3s;
  z-index: 2;
  position: relative;
}

.services-2 .service-item .icon:before {
  position: absolute;
  content: "";
  height: 30px;
  width: 30px;
  background: color-mix(in srgb, var(--accent-color), transparent 30%);
  border-radius: 50px;
  z-index: 1;
  bottom: -15px;
  right: -15px;
  transition: 0.3s;
}

.services-2 .service-item .title {
  font-weight: 550;
  margin-bottom: 14px;
  line-height: 30px;
  font-size: 30px;
}

.services-2 .service-item .description {
  line-height: 30px;
  font-size: 18px;
  font-weight: 450;
}

/*--------------------------------------------------------------
# Colaborate Section
--------------------------------------------------------------*/
.colaborate .service-item {
  background: color-mix(in srgb, var(--accent-color), transparent 96%);
  box-shadow: 0px 5px 90px 0px color-mix(in srgb, var(--accent-color), transparent 80%);
  border-radius: 20px;
  padding: 30px 30px 30px 30px;
  transition: all ease-in-out 0.4s;
  height: 100%;
}

.colaborate .service-item .icon {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.colaborate .service-item .icon i {
  color: var(--accent-color);
  font-size: 78px;
  transition: 0.3s;
}

.colaborate .service-item h4 {
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 34px;
  text-align: center;
}

.colaborate .service-item h4 a {
  color: var(--heading-color);
  transition: ease-in-out 0.3s;
}

.colaborate .service-item p {
  line-height: 30px;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Faq 4 Section
--------------------------------------------------------------*/
.faq-4 .faq-container .faq-item {
  background-color: color-mix(in srgb, var(--accent-color), transparent 98%);
  position: relative;
  padding: 20px;
  margin-bottom: 15px;
  border: 4px solid color-mix(in srgb, var(--accent-color), transparent 30%);
  border-radius: 5px;
  overflow: hidden;
}

.faq-4 .faq-container .faq-item:last-child {
  margin-bottom: 0;
}

.faq-4 .faq-container .faq-item h3 {
  font-weight: 550;
  font-size: 24px;
  line-height: 34px;
  margin: 0 30px 0 0;
  transition: 0.3s;
  cursor: pointer;
  display: flex;
  align-items: center;
}

.faq-4 .faq-container .faq-item h3 .num {
  color: var(--accent-color);
  padding-right: 5px;
}

.faq-4 .faq-container .faq-item h3:hover {
  color: var(--accent-color);
}

.faq-4 .faq-container .faq-item .faq-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
}

.faq-4 .faq-container .faq-item .faq-content p {
  margin-bottom: 0;
  overflow: hidden;
  font-size: 18px;
  line-height: 36px;
  font-weight: 400;
}

.faq-4 .faq-container .faq-item .faq-toggle {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 18px;
  line-height: 0;
  transition: 0.3s;
  cursor: pointer;
}

.faq-4 .faq-container .faq-item .faq-toggle:hover {
  color: var(--accent-color);
}

.faq-4 .faq-container .faq-active h3 {
  color: var(--accent-color);
}

.faq-4 .faq-container .faq-active .faq-content {
  grid-template-rows: 1fr;
  visibility: visible;
  opacity: 1;
  padding-top: 10px;
}

.faq-4 .faq-container .faq-active .faq-toggle {
  transform: rotate(90deg);
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Colaborate 2 Section
--------------------------------------------------------------*/
.colaborate-2 .service-item {
  display: block;
  background-color: var(--surface-color);
  padding: 2rem;
  border-radius: 15px;
  transition: all 0.3s ease;
  height: 100%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
  text-decoration: none;
  color: var(--default-color);
  z-index: 1;
}

.colaborate-2 .service-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #d000ff, #6bff75, #4ECDC4);
}

.colaborate-2 .service-item:hover {
  transform: translateY(-40px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.colaborate-2 .service-icon {
  font-size: 80px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s ease;
  color: color-mix(in srgb, var(--default-color), transparent 35%);
}

.colaborate-2 .icon2 {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.colaborate-2 .icon2 i {
  color: color-mix(in srgb, var(--default-color), transparent 35%);
  font-size: 40px;
  transition: 0.3s;
}

.colaborate-2 .service-title {
  font-size: 40px;
  line-height: 30px;
  font-weight: 550;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: color-mix(in srgb, var(--default-color), transparent 0%);
  transition: color 0.3s ease;
}

.colaborate-2 .service-description {
  font-size: 18px;
  line-height: 30px;
  font-weight: 550;
  transition: 0.3s ease;
  color: var(--default-color);
}

.colaborate-2 .service-item:hover .service-icon {
  color: var(--accent-color);
}

.colaborate-2 .service-item:hover .service-title {
  color: var(--accent-color);
}

.colaborate-2 .service-item:hover .service-description {
  color: var(--accent-color);
}

.colaborate-2 .service-item:hover .icon2 i {
  color: color-mix(in srgb, var(--accent-color), transparent 30%);
}

.colaborate-2 .scribble {
  position: absolute;
  opacity: 0.2;
  pointer-events: none;
  z-index: 0;
}

.colaborate-2 .scribble-1 {
  top: -50px;
  left: -50px;
  animation: float-rotate 3s ease-in-out infinite;
}

.colaborate-2 .scribble-2 {
  top: -50px;
  right: -50px;
  animation: float-scale 5s ease-in-out infinite;
}

.colaborate-2 .scribble-3 {
  bottom: -50px;
  left: -50px;
  animation: float-move 3s ease-in-out infinite;
}

.colaborate-2 .scribble-4 {
  bottom: -50px;
  right: -50px;
  animation: float-opacity 2s ease-in-out infinite;
}

@keyframes float-rotate {

  0%,
  100% {
    transform: rotate(0deg);
  }

  50% {
    transform: rotate(10deg);
  }
}

@keyframes float-scale {

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

  50% {
    transform: scale(1.1);
  }
}

@keyframes float-move {

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

  50% {
    transform: translate(20px, -20px);
  }
}

@keyframes float-opacity {

  0%,
  100% {
    opacity: 0.2;
  }

  50% {
    opacity: 0.5;
  }
}

@media (max-width: 768px) {
  .services-28 .service-item {
    margin-bottom: 2rem;
  }

  .services-28 .scribble {
    max-width: 100px;
    max-height: 100px;
  }
}

.goverlay1 {
  width: 100%;
  height: calc(100vh + 1px);
  position: fixed;
  top: -1px;
  left: 0;
  background: rgba(0, 0, 0, 0.051);
  will-change: opacity;
}

.glightbox-mobile1 .goverlay1 {
  background: rgba(0, 0, 0, 0.051);
}

.btn-get-started {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 24px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 20px;
  border-radius: 50px;
  transition: 0.5s;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}

.btn-get-started i {
  color: var(--contrast-color);
  font-size: 40px;
  transition: 0.3s;
  line-height: 0;
  margin-right: 10px;
}

.btn-get-started:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}

.btn-watch-video {
  font-size: 24px;
  transition: 0.5s;
  margin-left: 60px;
  color: var(--default-color);
  font-weight: 500;
}

.btn-watch-video i {
  color: var(--accent-color);
  font-size: 48px;
  transition: 0.3s;
  line-height: 0;
  margin-right: 10px;
}

.btn-watch-video:hover {
  color: var(--accent-color);
}

.btn-watch-video:hover i {
  color: color-mix(in srgb, var(--accent-color), transparent 15%);
}

/*--------------------------------------------------------------
# Contact 3 Section
--------------------------------------------------------------*/
.contact-3 .info-container {
  background-color: var(--accent-color);
  height: 100%;
  padding: 20px;
}

.contact-3 .info-container h4 {
  color: var(--contrast-color);
  font-size: 26px;
  margin-top: 0;
}

.contact-3 .info-item {
  width: 100%;
  margin-bottom: 30px;
  padding: 45px;
  color: var(--contrast-color);
  background-color: color-mix(in srgb, var(--contrast-color), transparent 90%);
}

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

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

.contact-3 .info-item h3 {
  color: var(--contrast-color);
  font-size: 18px;
  font-weight: 500;
}

.contact-3 .info-item h4 {
  color: var(--contrast-color);
  font-size: 20px;
  font-weight: 550;

}

.contact-3 .info-item p {

  margin-bottom: 0;
  font-size: 16px;
}

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

.contact-3 .php-email-form {
  background-color: var(--surface-color);
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  width: 100%;
  height: 100%;
  padding: 30px;

}

.contact-3 .php-email-form h4 {
  color: var(--default-color);
  font-size: 24px;
  padding: 0;
  font-weight: 600;
  margin-bottom: 5px;
}

.contact-3 .php-email-form h5 {
  padding: 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 16px;
  font-weight: 400;
  line-height: 30px;
  margin-bottom: 10px;
}
.contact-3 .php-email-form input[type=text],
.contact-3 .php-email-form input[type=email],
.contact-3 .php-email-form input[type=tel],
.contact-3 .php-email-form textarea {
  font-size: 14px;
  padding: 10px 15px;
  box-shadow: none;
  border-radius: 0;
  color: var(--default-color);
  background-color: var(--surface-color);
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

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

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

.contact-3 .php-email-form .labelcom {
  font-size: 15px;
}

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

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

/*--------------------------------------------------------------
# Services 22 Section
--------------------------------------------------------------*/
.services-22 .service-item {
  display: block;
  background: color-mix(in srgb, var(--accent-color), transparent 98%);
  padding: 2rem;
  border-radius: 15px;
  transition: all 0.3s ease;
  height: 100%;
  box-shadow: 0 10px 30px rgba(2, 118, 89, 0.1);
  position: relative;
  overflow: hidden;
  text-decoration: none;
  color: var(--default-color);
  z-index: 1;
}

.services-22 .service-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #d000ff, #6bff75, #4ECDC4);
}

.services-22 .service-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.services-22 .service-icon {
  font-size: 60px;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s ease;
  color: color-mix(in srgb, var(--heading-color), transparent 40%);
}

.services-22 .icon2 {
  font-size: 30px;
  margin-bottom: 15px;
  margin-top: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s ease;
  color: color-mix(in srgb, var(--heading-color), transparent 40%);
}

.services-22 .service-title {
  font-size: 24px;
  margin-bottom: 2px;
  transition: color 0.3s ease;
  color: color-mix(in srgb, var(--heading-color), transparent 20%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.services-22 .service-description {
  font-size: 1rem;
  transition: 0.3s ease;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.services-22 .service-item:hover .service-icon,
.services-22 .service-item:hover .service-title,
.services-22 .service-item:hover .icon2 {
  color: var(--accent-color);
}

.services-22 .service-item:hover .service-description {
  color: var(--default-color);
}

.services-22 .scribble {
  position: absolute;
  opacity: 0.2;
  pointer-events: none;
  z-index: 0;
}

.services-22 .scribble-1 {
  top: -50px;
  left: -50px;
  animation: float-rotate 3s ease-in-out infinite;
}

.services-22 .scribble-2 {
  top: -50px;
  right: -50px;
  animation: float-scale 5s ease-in-out infinite;
}

.services-22 .scribble-3 {
  bottom: -50px;
  left: -50px;
  animation: float-move 3s ease-in-out infinite;
}

.services-22 .scribble-4 {
  bottom: -50px;
  right: -50px;
  animation: float-opacity 2s ease-in-out infinite;
}

@keyframes float-rotate {

  0%,
  100% {
    transform: rotate(0deg);
  }

  50% {
    transform: rotate(10deg);
  }
}

@keyframes float-scale {

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

  50% {
    transform: scale(1.1);
  }
}

@keyframes float-move {

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

  50% {
    transform: translate(20px, -20px);
  }
}

@keyframes float-opacity {

  0%,
  100% {
    opacity: 0.2;
  }

  50% {
    opacity: 0.5;
  }
}

@media (max-width: 768px) {
  .services-28 .service-item {
    margin-bottom: 2rem;
  }

  .services-28 .scribble {
    max-width: 100px;
    max-height: 100px;
  }
}

/*--------------------------------------------------------------
# Contact 5 Section
--------------------------------------------------------------*/
.contact-5 .info-box {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 3rem;
  border-radius: 1rem;
  height: 100%;
}

.contact-5 .info-box h3 {
  color: var(--contrast-color);
  font-weight: 500;
  font-size: 28px;
  margin-bottom: 1rem;
}

.contact-5 .info-box p {
  opacity: 0.8;
  margin-bottom: 0.25rem;
  font-size: 14px;
  line-height: 28px;
  font-weight: 300;
}

.contact-5 .info-box a {
  color: var(--contrast-color);
  font-weight: 400;
  font-size: 14px;
}

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

.contact-5 .info-box p {
  opacity: 0.8;
  margin-bottom: 1rem;
  font-size: 16px;
  line-height: 28px;
  font-weight: 400;
}

.contact-5 .info-box a {
  color: var(--contrast-color);
  font-weight: 600;
  font-size: 16px;
}

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

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

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

.contact-5 .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-5 .info-item .icon-box i {
  font-size: 1.5rem;
  color: var(--contrast-color);
}

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

.contact-5 .info-item .content h4 {
  color: var(--contrast-color);
  font-size: 22px;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.contact-5 .info-item .content p {
  margin-bottom: 0.2rem;
  font-size: 20px;
}

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

.contact-5 .contact-form {
  background-color: var(--surface-color);
  padding: 3rem;
  border-radius: 1rem;
  height: 100%;
  box-shadow: 0 0 20px var(--accent-color);
  border-color: color-mix(in srgb, var(--accent-color), transparent 10%);
}

.contact-5 .contact-form h3 {
  font-size: 26px;
  font-weight: 500;
  line-height: 30px;
  margin-bottom: 10px;
}

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



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

.contact-5 .contact-form p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 16px;
  font-weight: 400;
  line-height: 30px;
  margin-bottom: 10px;
}

.contact-5 .contact-form .labelcom {
  font-size: 16px;
}

.contact-5 .contact-form .form-control,
.contact-5 .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-5 .contact-form .form-control:focus,
.contact-5 .contact-form .form-select:focus {
  box-shadow: none;
  border-color: var(--accent-color);
}

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

.contact-5 .contact-form .btn {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 1rem 2rem;
  border-radius: 2rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: 0.3s;
  font-size: 20px;
  font-weight: 400;
}

.contact-5 .contact-form .btn i {
  font-size: 1rem;
}

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

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

.get-a-quote-3 .php-email-form {
  background: color-mix(in srgb, var(--default-color), transparent 97%);
  border-color: color-mix(in srgb, var(--accent-color), transparent 10%);
  padding: 30px;
  height: 100%;
}

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

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

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

.get-a-quote-3 .php-email-form p {
  font-size: 18px;
  margin-bottom: 20px;
  line-height: 30px;
}

.get-a-quote-3 .php-email-form input[type=text],
.get-a-quote-3 .php-email-form input[type=email],
.get-a-quote-3 .php-email-form input[type=date],
.get-a-quote-3 .php-email-form input[type=textarea],
.get-a-quote-3 .php-email-form input[type=tel],
.get-a-quote-3 .php-email-form textarea {
  font-size: 14px;
  padding: 10px 15px;
  box-shadow: none;
  border-radius: 0;
  color: var(--default-color);
  background-color: color-mix(in srgb, var(--background-color), transparent 40%);
  border-color: color-mix(in srgb, var(--accent-color), transparent 10%);
}

.get-a-quote-3 .php-email-form input[type=text]:focus,
.get-a-quote-3 .php-email-form input[type=email]:focus,
.get-a-quote-3 .php-email-form input[type=date]:focus,
.get-a-quote-3 .php-email-form input[type=textarea]:focus,
.get-a-quote-3 .php-email-form input[type=tel]:focus,
.get-a-quote-3 .php-email-form textarea:focus {
  border-color: var(--accent-color);
}

.get-a-quote-3 .php-email-form input[type=text]::placeholder,
.get-a-quote-3 .php-email-form input[type=email]::placeholder,
.get-a-quote-3 .php-email-form input[type=date]::placeholder,
.get-a-quote-3 .php-email-form input[type=textarea]::placeholder,
.get-a-quote-3 .php-email-form input[type=tel]::placeholder,
.get-a-quote-3 .php-email-form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

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

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

/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
.team {
  --background-color: rgba(94, 212, 155, 0.135);
}

.team .team-member {
  background-color: var(--surface-color);
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  position: relative;
  border-radius: 5px;
  transition: 0.5s;
  padding: 30px;
  height: 100%;
}

@media (max-width: 468px) {
  .team .team-member {
    flex-direction: column;
    justify-content: center !important;
    align-items: center !important;
  }
}

.team .team-member .pic {
  overflow: hidden;
  width: 150px;
  border-radius: 50%;
  flex-shrink: 0;
}

.team .team-member .pic img {
  transition: ease-in-out 0.3s;
}

.team .team-member:hover {
  transform: translateY(-10px);
}

.team .team-member .member-info {
  padding-left: 30px;
}

@media (max-width: 468px) {
  .team .team-member .member-info {
    padding: 30px 0 0 0;
    text-align: center;
  }
}

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

.team .team-member span {
  display: block;
  font-size: 20px;
  padding-bottom: 10px;
  position: relative;
  font-weight: 500;
}

.team .team-member span::after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 1px;
  background: color-mix(in srgb, var(--default-color), transparent 85%);
  bottom: 0;
  left: 0;
}

@media (max-width: 468px) {
  .team .team-member span::after {
    left: calc(50% - 25px);
  }
}

.team .team-member p {
  margin: 10px 0 0 0;
  font-size: 16px;
}

.team .team-member .social {
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: start;
  width: 100%;
}

@media (max-width: 468px) {
  .team .team-member .social {
    justify-content: center;
  }
}

.team .team-member .social a {
  background: color-mix(in srgb, var(--default-color), transparent 94%);
  transition: ease-in-out 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  width: 36px;
  height: 36px;
}

.team .team-member .social a i {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 16px;
  margin: 0 2px;
}

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

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

.team .team-member .social a+a {
  margin-left: 8px;
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .container {
  background-color: var(--surface-color);
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
}

.about .skills-content h5 {
  font-size: 18px;
  font-weight: 700;
  margin: 30px 0 15px 0;
}

.about .progress {
  height: 36px;
  display: block;
  background: none;
  border-radius: 0;
  margin-top: 15px;
}

.about .progress .skill {
  color: var(--default-color);
  padding: 0;
  margin: 0 0 6px 0;
  text-transform: uppercase;
  display: block;
  font-weight: 600;
  font-family: var(--heading-font);
}

.about .progress .skill .val {
  float: right;
  font-style: normal;
}

.about .progress-bar-wrap {
  background: color-mix(in srgb, var(--default-color), transparent 90%);
  height: 10px;
}

.about .progress-bar {
  width: 1px;
  height: 10px;
  transition: 0.9s;
  background-color: var(--accent-color);
}

.about .about-me h4 {
  font-size: 28px;
  position: relative;
  padding-bottom: 10px;
  margin-bottom: 30px;
  font-weight: 700;
}

.about .about-me h4:after {
  content: "";
  position: absolute;
  display: block;
  width: 64px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  bottom: 0;
  margin: auto;
}

.about .about-me p {
  line-height: 30px;
  font-size: 18px;
}

/*--------------------------------------------------------------
# Team 2 Section
--------------------------------------------------------------*/
.team-2 {
  --background-color: rgba(94, 212, 155, 0.135);
}

.team-2 .team-member {
  background-color: var(--surface-color);
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  position: relative;
  border-radius: 5px;
  transition: 0.5s;
  padding: 30px;
  height: 100%;
}

@media (max-width: 468px) {
  .team-2 .team-member {
    flex-direction: column;
    justify-content: center !important;
    align-items: center !important;
  }
}

.team-2 .team-member .pic {
  overflow: hidden;
  width: 150px;
  border-radius: 50%;
  flex-shrink: 0;
}

.team-2 .team-member .pic img {
  transition: ease-in-out 0.3s;
}

.team-2 .team-member:hover {
  transform: translateY(-10px);
}

.team-2 .team-member .member-info {
  padding-left: 30px;
}

@media (max-width: 468px) {
  .team-2 .team-member .member-info {
    padding: 30px 0 0 0;
    text-align: center;
  }
}

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

.team-2 .team-member span {
  display: block;
  font-size: 15px;
  padding-bottom: 10px;
  position: relative;
  font-weight: 500;
}

.team-2 .team-member span::after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 1px;
  background: color-mix(in srgb, var(--default-color), transparent 85%);
  bottom: 0;
  left: 0;
}

@media (max-width: 468px) {
  .team-2 .team-member span::after {
    left: calc(50% - 25px);
  }
}

.team-2 .team-member p {
  margin: 10px 0 0 0;
  font-size: 14px;
}

.team-2 .team-member .social {
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: start;
  width: 100%;
}

@media (max-width: 468px) {
  .team-2 .team-member .social {
    justify-content: center;
  }
}

.team-2 .team-member .social a {
  background: color-mix(in srgb, var(--default-color), transparent 94%);
  transition: ease-in-out 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  width: 36px;
  height: 36px;
}

.team-2 .team-member .social a i {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 16px;
  margin: 0 2px;
}

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

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

.team-2 .team-member .social a+a {
  margin-left: 8px;
}

/*--------------------------------------------------------------
# Servicesundefinedundefined Section
--------------------------------------------------------------*/
.servicesundefinedundefined .service-item {
  text-align: left;
  padding: 0px;
  transition: all ease-in-out 0.3s;
  height: 100%;
}

.servicesundefinedundefined .service-item .icon {
  background-color: var(--surface-color);
  color: var(--accent-color);
  margin: 0 auto;
  width: 90px;
  height: 90px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 50px;
  transition: ease-in-out 0.3s;
  box-shadow: 0px 0 25px rgba(0, 0, 0, 0.1);
}

.servicesundefinedundefined .service-item h3 {
  font-weight: 700;
  margin-bottom: 15px;
  padding-bottom: 15px;
  font-size: 24px;
  transition: 0.3s;
  position: relative;
}

.servicesundefinedundefined .service-item h3:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 2px;
  background: var(--accent-color);
  bottom: 0;
  left: calc(50% - 25px);
}

.servicesundefinedundefined .service-item p {
  line-height: 30px;
  font-size: 18px;
  margin-bottom: 0;
}

.servicesundefinedundefined .service-item:hover .icon {
  box-shadow: 0px 0 40px rgba(0, 0, 0, 0.1);
}

.servicesundefinedundefined .service-item:hover h3 {
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Get A Quoteundefined Section
--------------------------------------------------------------*/
.get-a-quoteundefined {
  padding-top: 60px;
  padding-bottom: 60px;
}

.get-a-quoteundefined .quote-bg {
  min-height: 500px;
  background-size: cover;
  background-position: center;
}

.get-a-quoteundefined .php-email-form {
  background: color-mix(in srgb, var(--default-color), transparent 97%);
  border-color: color-mix(in srgb, var(--accent-color), transparent 10%);
  padding: 30px;
  height: 100%;
}

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

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

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

.get-a-quoteundefined .php-email-form p {
  font-size: 18px;
  margin-bottom: 10px;
  line-height: 30px;
}

.get-a-quoteundefined .php-email-form select {
  font-size: 18px;
  line-height: 30px;
}

.get-a-quoteundefined .php-email-form input[type=text],
.get-a-quoteundefined .php-email-form input[type=email],
.get-a-quoteundefined .php-email-form input[type=date],
.get-a-quoteundefined .php-email-form input[type=textarea],
.get-a-quoteundefined .php-email-form input[type=tel],
.get-a-quoteundefined .php-email-form select,
.get-a-quoteundefined .php-email-form textarea {
  font-size: 14px;
  padding: 10px 15px;
  box-shadow: none;
  border-radius: 0;
  color: var(--default-color);
  background-color: color-mix(in srgb, var(--background-color), transparent 40%);
  border-color: color-mix(in srgb, var(--accent-color), transparent 10%);
}

.get-a-quoteundefined .php-email-form input[type=text]:focus,
.get-a-quoteundefined .php-email-form input[type=email]:focus,
.get-a-quoteundefined .php-email-form input[type=date]:focus,
.get-a-quoteundefined .php-email-form input[type=textarea]:focus,
.get-a-quoteundefined .php-email-form input[type=tel]:focus,
.get-a-quoteundefined .php-email-form select,
.get-a-quoteundefined .php-email-form textarea:focus {
  border-color: var(--accent-color);
}

.get-a-quoteundefined .php-email-form input[type=text]::placeholder,
.get-a-quoteundefined .php-email-form input[type=email]::placeholder,
.get-a-quoteundefined .php-email-form input[type=date]::placeholder,
.get-a-quoteundefined .php-email-form input[type=textarea]::placeholder,
.get-a-quoteundefined .php-email-form input[type=tel]::placeholder,
.get-a-quoteundefined .php-email-form select::placeholder,
.get-a-quoteundefined .php-email-form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

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

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

/*--------------------------------------------------------------
# About 2 Section
--------------------------------------------------------------*/
.about-2 .container {
  background-color: var(--surface-color);
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
}

.about-2 .skills-content h5 {
  font-size: 18px;
  font-weight: 700;
  margin: 30px 0 15px 0;
}

.about-2 .progress {
  height: 36px;
  display: block;
  background: none;
  border-radius: 0;
  margin-top: 15px;
}

.about-2 .progress .skill {
  color: var(--default-color);
  padding: 0;
  margin: 0 0 6px 0;
  text-transform: uppercase;
  display: block;
  font-weight: 600;
  font-family: var(--heading-font);
}

.about-2 .progress .skill .val {
  float: right;
  font-style: normal;
}

.about-2 .progress-bar-wrap {
  background: color-mix(in srgb, var(--default-color), transparent 90%);
  height: 10px;
}

.about-2 .progress-bar {
  width: 1px;
  height: 10px;
  transition: 0.9s;
  background-color: var(--accent-color);
}

.about-2 .about-me h4 {
  font-size: 28px;
  position: relative;
  padding-bottom: 10px;
  margin-bottom: 30px;
  font-weight: 600;
}

.about-2 .about-me h4:after {
  content: "";
  position: absolute;
  display: block;
  width: 64px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  bottom: 0;
  margin: auto;
}

.about-2 .about-me p {
  line-height: 30px;
  font-size: 18px;
}

/*--------------------------------------------------------------
# About 3 Section
--------------------------------------------------------------*/
.about-3 .container {
  background-color: var(--surface-color);
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
}

.about-3 .skills-content h5 {
  font-size: 18px;
  font-weight: 700;
  margin: 30px 0 15px 0;
}

.about-3 .progress {
  height: 36px;
  display: block;
  background: none;
  border-radius: 0;
  margin-top: 15px;
}

.about-3 .progress .skill {
  color: var(--default-color);
  padding: 0;
  margin: 0 0 6px 0;
  text-transform: uppercase;
  display: block;
  font-weight: 600;
  font-family: var(--heading-font);
}

.about-3 .progress .skill .val {
  float: right;
  font-style: normal;
}

.about-3 .progress-bar-wrap {
  background: color-mix(in srgb, var(--default-color), transparent 90%);
  height: 10px;
}

.about-3 .progress-bar {
  width: 1px;
  height: 10px;
  transition: 0.9s;
  background-color: var(--accent-color);
}

.about-3 .about-me h4 {
  font-size: 28px;
  position: relative;
  padding-bottom: 10px;
  margin-bottom: 30px;
  font-weight: 600;
}

.about-3 .about-me h4:after {
  content: "";
  position: absolute;
  display: block;
  width: 64px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  bottom: 0;
  margin: auto;
}

.about-3 .about-me p {
  line-height: 30px;
  font-size: 18px;
}

/*--------------------------------------------------------------
# Aboutundefined 3 Section
--------------------------------------------------------------*/
.aboutundefined-3 .container {
  background-color: var(--surface-color);
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
}

.aboutundefined-3 .skills-content h5 {
  font-size: 18px;
  font-weight: 700;
  margin: 30px 0 15px 0;
}

.aboutundefined-3 .progress {
  height: 36px;
  display: block;
  background: none;
  border-radius: 0;
  margin-top: 15px;
}

.aboutundefined-3 .progress .skill {
  color: var(--default-color);
  padding: 0;
  margin: 0 0 6px 0;
  text-transform: uppercase;
  display: block;
  font-weight: 600;
  font-family: var(--heading-font);
}

.aboutundefined-3 .progress .skill .val {
  float: right;
  font-style: normal;
}

.aboutundefined-3 .progress-bar-wrap {
  background: color-mix(in srgb, var(--default-color), transparent 90%);
  height: 10px;
}

.aboutundefined-3 .progress-bar {
  width: 1px;
  height: 10px;
  transition: 0.9s;
  background-color: var(--accent-color);
}

.aboutundefined-3 .about-me h4 {
  font-size: 28px;
  position: relative;
  padding-bottom: 10px;
  margin-bottom: 30px;
  font-weight: 600;
}

.aboutundefined-3 .about-me h4:after {
  content: "";
  position: absolute;
  display: block;
  width: 64px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  bottom: 0;
  margin: auto;
}

.aboutundefined-3 .about-me p {
  line-height: 30px;
  font-size: 18px;
}

/*--------------------------------------------------------------
# Services 7 Section
--------------------------------------------------------------*/
.services-7 .service-item {
  display: block;
  background-color: var(--surface-color);
  padding: 2rem;
  border-radius: 15px;
  transition: all 0.3s ease;
  height: 100%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
  text-decoration: none;
  color: var(--default-color);
  z-index: 1;
}

.services-7 .service-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #c300ff, #6bffa4, #4ECDC4);
}

.services-7 .service-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.services-7 .service-icon {
  font-size: 48px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s ease;
  color: color-mix(in srgb, var(--heading-color), transparent 40%);
}

.services-7 .service-title {
  font-size: 23px;
  margin-bottom: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.3s ease;
  color: color-mix(in srgb, var(--heading-color), transparent 20%);
}

.services-7 .service-description {
  font-size: 1rem;
  transition: 0.3s ease;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.services-7 .service-item:hover .service-icon,
.services-7 .service-item:hover .service-title {
  color: var(--heading-color);
}

.services-7 .service-item:hover .service-description {
  color: var(--default-color);
}

.services-7 .scribble {
  position: absolute;
  opacity: 0.2;
  pointer-events: none;
  z-index: 0;
}

.services-7 .scribble-1 {
  top: -50px;
  left: -50px;
  animation: float-rotate 3s ease-in-out infinite;
}

.services-7 .scribble-2 {
  top: -50px;
  right: -50px;
  animation: float-scale 5s ease-in-out infinite;
}

.services-7 .scribble-3 {
  bottom: -50px;
  left: -50px;
  animation: float-move 3s ease-in-out infinite;
}

.services-7 .scribble-4 {
  bottom: -50px;
  right: -50px;
  animation: float-opacity 2s ease-in-out infinite;
}

@keyframes float-rotate {

  0%,
  100% {
    transform: rotate(0deg);
  }

  50% {
    transform: rotate(10deg);
  }
}

@keyframes float-scale {

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

  50% {
    transform: scale(1.1);
  }
}

@keyframes float-move {

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

  50% {
    transform: translate(20px, -20px);
  }
}

@keyframes float-opacity {

  0%,
  100% {
    opacity: 0.2;
  }

  50% {
    opacity: 0.5;
  }
}

@media (max-width: 768px) {
  .services-28 .service-item {
    margin-bottom: 2rem;
  }

  .services-28 .scribble {
    max-width: 100px;
    max-height: 100px;
  }
}

/*--------------------------------------------------------------
# Aboutundefined 2 Section
--------------------------------------------------------------*/
.aboutundefined-2 .container {
  background-color: var(--surface-color);
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
}

.aboutundefined-2 .skills-content h5 {
  font-size: 18px;
  font-weight: 700;
  margin: 30px 0 15px 0;
}

.aboutundefined-2 .progress {
  height: 36px;
  display: block;
  background: none;
  border-radius: 0;
  margin-top: 15px;
}

.aboutundefined-2 .progress .skill {
  color: var(--default-color);
  padding: 0;
  margin: 0 0 6px 0;
  text-transform: uppercase;
  display: block;
  font-weight: 600;
  font-family: var(--heading-font);
}

.aboutundefined-2 .progress .skill .val {
  float: right;
  font-style: normal;
}

.aboutundefined-2 .progress-bar-wrap {
  background: color-mix(in srgb, var(--default-color), transparent 90%);
  height: 10px;
}

.aboutundefined-2 .progress-bar {
  width: 1px;
  height: 10px;
  transition: 0.9s;
  background-color: var(--accent-color);
}

.aboutundefined-2 .about-me h4 {
  font-size: 28px;
  position: relative;
  padding-bottom: 10px;
  margin-bottom: 30px;
  font-weight: 550;
}

.aboutundefined-2 .about-me h4:after {
  content: "";
  position: absolute;
  display: block;
  width: 400px;
  height: 4px;
  background: var(--accent-color);
  left: 0;
  bottom: 0;
  margin: auto;
}

.aboutundefined-2 .about-me p {
  line-height: 30px;
  font-size: 18px;
}

/*--------------------------------------------------------------
# Aboutundefinedundefined Section
--------------------------------------------------------------*/
.aboutundefinedundefined {
  padding-top: 60px;
  padding-bottom: 3px;
}

.aboutundefinedundefined .container {
  background-color: var(--surface-color);
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
}

.aboutundefinedundefined .skills-content h5 {
  font-size: 18px;
  font-weight: 700;
  margin: 30px 0 15px 0;
}

.aboutundefinedundefined .progress {
  height: 36px;
  display: block;
  background: none;
  border-radius: 0;
  margin-top: 15px;
}

.aboutundefinedundefined .progress .skill {
  color: var(--default-color);
  padding: 0;
  margin: 0 0 6px 0;
  text-transform: uppercase;
  display: block;
  font-weight: 600;
  font-family: var(--heading-font);
}

.aboutundefinedundefined .progress .skill .val {
  float: right;
  font-style: normal;
}

.aboutundefinedundefined .progress-bar-wrap {
  background: color-mix(in srgb, var(--default-color), transparent 90%);
  height: 10px;
}

.aboutundefinedundefined .progress-bar {
  width: 1px;
  height: 10px;
  transition: 0.9s;
  background-color: var(--accent-color);
}

.aboutundefinedundefined .about-me h4 {
  font-size: 28px;
  position: relative;
  padding-bottom: 10px;
  margin-bottom: 30px;
  font-weight: 600;
}

.aboutundefinedundefined .about-me h4:after {
  content: "";
  position: absolute;
  display: block;
  width: 64px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  bottom: 0;
  margin: auto;
}

.aboutundefinedundefined .about-me p {
  line-height: 30px;
  font-size: 18px;
}

/*--------------------------------------------------------------
# Aboutundefinedundefined 2 Section
--------------------------------------------------------------*/
.aboutundefinedundefined-2 {
  padding-top: 2px;
  padding-bottom: 2px;
}

.aboutundefinedundefined-2 .container {
  background-color: var(--surface-color);
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
}

.aboutundefinedundefined-2 .skills-content h5 {
  font-size: 18px;
  font-weight: 700;
  margin: 30px 0 15px 0;
}

.aboutundefinedundefined-2 .progress {
  height: 36px;
  display: block;
  background: none;
  border-radius: 0;
  margin-top: 15px;
}

.aboutundefinedundefined-2 .progress .skill {
  color: var(--default-color);
  padding: 0;
  margin: 0 0 6px 0;
  text-transform: uppercase;
  display: block;
  font-weight: 600;
  font-family: var(--heading-font);
}

.aboutundefinedundefined-2 .progress .skill .val {
  float: right;
  font-style: normal;
}

.aboutundefinedundefined-2 .progress-bar-wrap {
  background: color-mix(in srgb, var(--default-color), transparent 90%);
  height: 10px;
}

.aboutundefinedundefined-2 .progress-bar {
  width: 1px;
  height: 10px;
  transition: 0.9s;
  background-color: var(--accent-color);
}

.aboutundefinedundefined-2 .about-me h4 {
  font-size: 28px;
  position: relative;
  padding-bottom: 10px;
  margin-bottom: 30px;
  font-weight: 550;
}

.aboutundefinedundefined-2 .about-me h4:after {
  content: "";
  position: absolute;
  display: block;
  width: 400px;
  height: 4px;
  background: var(--accent-color);
  left: 0;
  bottom: 0;
  margin: auto;
}

.aboutundefinedundefined-2 .about-me p {
  line-height: 30px;
  font-size: 18px;
}

/*--------------------------------------------------------------
# Aboutundefinedundefined 3 Section
--------------------------------------------------------------*/
.aboutundefinedundefined-3 {
  padding-top: 4px;
  padding-bottom: 1px;
}

.aboutundefinedundefined-3 .container {
  background-color: var(--surface-color);
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
}

.aboutundefinedundefined-3 .skills-content h5 {
  font-size: 18px;
  font-weight: 700;
  margin: 30px 0 15px 0;
}

.aboutundefinedundefined-3 .progress {
  height: 36px;
  display: block;
  background: none;
  border-radius: 0;
  margin-top: 15px;
}

.aboutundefinedundefined-3 .progress .skill {
  color: var(--default-color);
  padding: 0;
  margin: 0 0 6px 0;
  text-transform: uppercase;
  display: block;
  font-weight: 600;
  font-family: var(--heading-font);
}

.aboutundefinedundefined-3 .progress .skill .val {
  float: right;
  font-style: normal;
}

.aboutundefinedundefined-3 .progress-bar-wrap {
  background: color-mix(in srgb, var(--default-color), transparent 90%);
  height: 10px;
}

.aboutundefinedundefined-3 .progress-bar {
  width: 1px;
  height: 10px;
  transition: 0.9s;
  background-color: var(--accent-color);
}

.aboutundefinedundefined-3 .about-me h4 {
  font-size: 28px;
  position: relative;
  padding-bottom: 10px;
  margin-bottom: 30px;
  font-weight: 550;
}

.aboutundefinedundefined-3 .about-me h4:after {
  content: "";
  position: absolute;
  display: block;
  width: 400px;
  height: 4px;
  background: var(--accent-color);
  left: 0;
  bottom: 0;
  margin: auto;
}

.aboutundefinedundefined-3 .about-me p {
  line-height: 30px;
  font-size: 18px;
}

/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/
.pricing {
  padding-top: 4px;
  padding-bottom: 0;
}

.pricing .pricing-item {
  border-bottom: 1px dashed color-mix(in srgb, var(--default-color), transparent 60%);
  width: 100%;
  height: 100%;
  padding: 0 0 15px 0;
}

.pricing .pricing-item h3 {
  margin: 0;
  font-size: 16px;
  font-weight: 550;
}

.pricing .pricing-item h4 {
  margin: 0;
  font-size: 16px;
  color: var(--accent-color);
  font-weight: 550;
}

/*--------------------------------------------------------------
# Aboutundefinedundefined 6 Section
--------------------------------------------------------------*/
.aboutundefinedundefined-6 {
  padding-top: 10px;
  padding-bottom: 0;
}

.aboutundefinedundefined-6 .container {
  background-color: var(--surface-color);
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
}

.aboutundefinedundefined-6 .skills-content h5 {
  font-size: 18px;
  font-weight: 700;
  margin: 30px 0 15px 0;
}

.aboutundefinedundefined-6 .progress {
  height: 36px;
  display: block;
  background: none;
  border-radius: 0;
  margin-top: 15px;
}

.aboutundefinedundefined-6 .progress .skill {
  color: var(--default-color);
  padding: 0;
  margin: 0 0 6px 0;
  text-transform: uppercase;
  display: block;
  font-weight: 600;
  font-family: var(--heading-font);
}

.aboutundefinedundefined-6 .progress .skill .val {
  float: right;
  font-style: normal;
}

.aboutundefinedundefined-6 .progress-bar-wrap {
  background: color-mix(in srgb, var(--default-color), transparent 90%);
  height: 10px;
}

.aboutundefinedundefined-6 .progress-bar {
  width: 1px;
  height: 10px;
  transition: 0.9s;
  background-color: var(--accent-color);
}

.aboutundefinedundefined-6 .about-me h4 {
  font-size: 28px;
  position: relative;
  padding-bottom: 10px;
  margin-bottom: 30px;
  font-weight: 550;
}

.aboutundefinedundefined-6 .about-me h4:after {
  content: "";
  position: absolute;
  display: block;
  width: 400px;
  height: 4px;
  background: var(--accent-color);
  left: 0;
  bottom: 0;
  margin: auto;
}

.aboutundefinedundefined-6 .about-me p {
  line-height: 30px;
  font-size: 18px;
}

/*--------------------------------------------------------------
# Aboutundefinedundefined 5 Section
--------------------------------------------------------------*/
.aboutundefinedundefined-5 {
  padding-top: 3px;
  padding-bottom: 1px;
}

.aboutundefinedundefined-5 .container {
  background-color: var(--surface-color);
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
}

.aboutundefinedundefined-5 .skills-content h5 {
  font-size: 18px;
  font-weight: 700;
  margin: 30px 0 15px 0;
}

.aboutundefinedundefined-5 .progress {
  height: 36px;
  display: block;
  background: none;
  border-radius: 0;
  margin-top: 15px;
}

.aboutundefinedundefined-5 .progress .skill {
  color: var(--default-color);
  padding: 0;
  margin: 0 0 6px 0;
  text-transform: uppercase;
  display: block;
  font-weight: 600;
  font-family: var(--heading-font);
}

.aboutundefinedundefined-5 .progress .skill .val {
  float: right;
  font-style: normal;
}

.aboutundefinedundefined-5 .progress-bar-wrap {
  background: color-mix(in srgb, var(--default-color), transparent 90%);
  height: 10px;
}

.aboutundefinedundefined-5 .progress-bar {
  width: 1px;
  height: 10px;
  transition: 0.9s;
  background-color: var(--accent-color);
}

.aboutundefinedundefined-5 .about-me h4 {
  font-size: 28px;
  position: relative;
  padding-bottom: 10px;
  margin-bottom: 30px;
  font-weight: 550;
}

.aboutundefinedundefined-5 .about-me h4:after {
  content: "";
  position: absolute;
  display: block;
  width: 400px;
  height: 4px;
  background: var(--accent-color);
  left: 0;
  bottom: 0;
  margin: auto;
}

.aboutundefinedundefined-5 .about-me p {
  line-height: 30px;
  font-size: 18px;
}

/*--------------------------------------------------------------
# Aboutundefinedundefined 4 Section
--------------------------------------------------------------*/
.aboutundefinedundefined-4 {
  padding-top: 3px;
  padding-bottom: 35px;
}

.aboutundefinedundefined-4 .container {
  background-color: var(--surface-color);
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
}

.aboutundefinedundefined-4 .skills-content h5 {
  font-size: 18px;
  font-weight: 700;
  margin: 30px 0 15px 0;
}

.aboutundefinedundefined-4 .progress {
  height: 36px;
  display: block;
  background: none;
  border-radius: 0;
  margin-top: 15px;
}

.aboutundefinedundefined-4 .progress .skill {
  color: var(--default-color);
  padding: 0;
  margin: 0 0 6px 0;
  text-transform: uppercase;
  display: block;
  font-weight: 600;
  font-family: var(--heading-font);
}

.aboutundefinedundefined-4 .progress .skill .val {
  float: right;
  font-style: normal;
}

.aboutundefinedundefined-4 .progress-bar-wrap {
  background: color-mix(in srgb, var(--default-color), transparent 90%);
  height: 10px;
}

.aboutundefinedundefined-4 .progress-bar {
  width: 1px;
  height: 10px;
  transition: 0.9s;
  background-color: var(--accent-color);
}

.aboutundefinedundefined-4 .about-me h4 {
  font-size: 28px;
  position: relative;
  padding-bottom: 10px;
  margin-bottom: 30px;
  font-weight: 550;
}

.aboutundefinedundefined-4 .about-me h4:after {
  content: "";
  position: absolute;
  display: block;
  width: 400px;
  height: 4px;
  background: var(--accent-color);
  left: 0;
  bottom: 0;
  margin: auto;
}

.aboutundefinedundefined-4 .about-me p {
  line-height: 30px;
  font-size: 18px;
}
