:root {
  --default-font: "Roboto", system-ui, -apple-system, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif,
    "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Raleway", sans-serif;
  --nav-font: "Poppins", sans-serif;
}

.u-1ab1f261 {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.u-c988ffcd {
  border: none;
  outline: none;
  padding: 10px 5px;
  color: #fff;
  border-radius: 10px;
}

:root {
  --background-color: #ffffff;
  --default-color: #444444;
  --heading-color: #222222;
  --accent-color: #3498db;
  --surface-color: #ffffff;
  --contrast-color: #ffffff;
}

:root {
  --nav-color: #444444;
  --nav-hover-color: #3498db;
  --nav-mobile-background-color: #ffffff;
  --nav-dropdown-background-color: #ffffff;
  --nav-dropdown-color: #444444;
  --nav-dropdown-hover-color: #3498db;
}

.light-background {
  --background-color: #f4fafd;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #060606;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #252525;
  --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
--------------------------------------------------------------*/
.u-099fb995 {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 15px 0;
  transition: all 0.5s;
  z-index: 997;
}

.u-099fb995 .u-96d6f2e7 {
  line-height: 1;
}

.u-099fb995 .u-96d6f2e7 img {
  max-height: 36px;
  margin-right: 8px;
}

.u-099fb995 .u-96d6f2e7 h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
}

.u-099fb995 .u-641bf7dd,
.u-099fb995 .u-641bf7dd:focus {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-size: 14px;
  padding: 8px 25px;
  margin: 0 0 0 30px;
  border-radius: 50px;
  transition: 0.3s;
}

.u-099fb995 .u-641bf7dd:hover,
.u-099fb995 .u-641bf7dd:focus:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
}

@media (max-width: 1200px) {
  .u-099fb995 .u-96d6f2e7 {
    order: 1;
  }

  .u-099fb995 .u-641bf7dd {
    order: 2;
    margin: 0 15px 0 0;
    padding: 6px 15px;
  }

  .u-099fb995 .u-002277f3 {
    order: 3;
  }
}

.scrolled .u-099fb995 {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1200px) {
  .u-002277f3 {
    padding: 0;
  }

  .u-002277f3 ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .u-002277f3 li {
    position: relative;
  }

  .u-002277f3 a,
  .u-002277f3 a:focus {
    color: var(--nav-color);
    padding: 18px 15px;
    font-size: 16px;
    font-family: var(--nav-font);
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .u-002277f3 a i,
  .u-002277f3 a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .u-002277f3 li:last-child a {
    padding-right: 0;
  }

  .u-002277f3 li:hover > a,
  .u-002277f3 .u-c76a5e84,
  .u-002277f3 .u-c76a5e84:focus {
    color: var(--nav-hover-color);
  }

  .u-002277f3 .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .u-002277f3 .dropdown ul li {
    min-width: 200px;
  }

  .u-002277f3 .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .u-002277f3 .dropdown ul a i {
    font-size: 12px;
  }

  .u-002277f3 .dropdown ul a:hover,
  .u-002277f3 .dropdown ul .u-c76a5e84:hover,
  .u-002277f3 .dropdown ul li:hover > a {
    color: var(--nav-dropdown-hover-color);
  }

  .u-002277f3 .dropdown:hover > ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .u-002277f3 .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .u-002277f3 .dropdown .dropdown:hover > ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

/* Navmenu - Mobile */
@media (max-width: 1199px) {
  .u-6769290f {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .u-002277f3 {
    padding: 0;
    z-index: 9997;
  }

  .u-002277f3 ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .u-002277f3 a,
  .u-002277f3 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;
  }

  .u-002277f3 a i,
  .u-002277f3 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%);
  }

  .u-002277f3 a i:hover,
  .u-002277f3 a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .u-002277f3 a:hover,
  .u-002277f3 .u-c76a5e84,
  .u-002277f3 .u-c76a5e84:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .u-002277f3 .u-c76a5e84 i,
  .u-002277f3 .u-c76a5e84:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .u-002277f3 .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;
  }

  .u-002277f3 .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .u-002277f3 .dropdown > .dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .u-6769290f {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .u-002277f3 {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .u-002277f3 > ul {
    display: block;
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.u-251d1646 {
  color: var(--default-color);
  background-color: var(--background-color);
  font-size: 14px;
  padding: 40px 0;
  position: relative;
  box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.1);
}

.u-251d1646 .copyright p {
  margin-bottom: 0;
}

.u-251d1646 .social-links {
  margin-top: 20px;
}

.u-251d1646 .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  margin: 0 5px;
  transition: 0.3s;
}

.u-251d1646 .social-links a:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.u-251d1646 .credits {
  margin-top: 10px;
  font-size: 13px;
  text-align: center;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: var(--background-color);
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ffffff;
  border-color: var(--accent-color) transparent var(--accent-color) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.u-260a1712 {
  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;
}

.u-260a1712 i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.u-260a1712:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.u-260a1712.u-c76a5e84 {
  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 {
  --background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 20px 0;
  position: relative;
}

.page-title h1 {
  font-size: 28px;
  font-weight: 700;
  margin: 0;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0 0 10px 0;
  margin: 0;
  font-size: 14px;
  font-weight: 400;
}

.page-title .breadcrumbs ol li + li {
  padding-left: 10px;
}

.page-title .breadcrumbs ol li + li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.u-73d5342e {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 90px;
  overflow: clip;
}

@media (max-width: 1199px) {
  section,
  .u-73d5342e {
    scroll-margin-top: 66px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.u-fb0bd1a2 {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
}

.u-fb0bd1a2 h2 {
  font-size: 32px;
  font-weight: 700;
  position: relative;
}

.u-fb0bd1a2 h2:before,
.u-fb0bd1a2 h2:after {
  content: "";
  width: 50px;
  height: 2px;
  background: var(--accent-color);
  display: inline-block;
}

.u-fb0bd1a2 h2:before {
  margin: 0 15px 10px 0;
}

.u-fb0bd1a2 h2:after {
  margin: 0 0 10px 15px;
}

.u-fb0bd1a2 p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.u-f04af61b {
  width: 100%;
  min-height: 70vh;
  position: relative;
  padding: 80px 0 60px 0;
  display: flex;
  align-items: center;
}

.u-f04af61b h1 {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
}

.u-f04af61b p {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin: 5px 0 20px 0;
  font-size: 22px;
  font-weight: 400;
}

.u-f04af61b .u-727c5f74 {
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 36px;
  border-radius: 50px;
  transition: 0.3s;
  border: 2px solid var(--accent-color);
}

.u-f04af61b .u-727c5f74:hover {
  color: var(--contrast-color);
  background: var(--accent-color);
}

.u-f04af61b .u-1182af03 {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

@media (max-width: 640px) {
  .u-f04af61b h1 {
    font-size: 28px;
    line-height: 36px;
  }

  .u-f04af61b p {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }

  .u-f04af61b .u-727c5f74,
  .u-f04af61b .u-7b069593 {
    font-size: 13px;
  }
}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(-10px);
  }
}

/*--------------------------------------------------------------
# Clients Section
--------------------------------------------------------------*/
.clients {
  padding: 20px 0;
}

.clients .client-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.clients .client-logo img {
  padding: 20px 40px;
  max-width: 90%;
  transition: 0.3s;
  opacity: 0.5;
  filter: grayscale(100);
}

.clients .client-logo img:hover {
  filter: none;
  opacity: 1;
}

@media (max-width: 640px) {
  .clients .client-logo img {
    padding: 20px;
  }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.u-46b3931b .u-9a0364b9 h3 {
  font-weight: 700;
  font-size: 34px;
  margin-bottom: 30px;
}

.u-46b3931b .u-9a0364b9 p {
  margin-bottom: 30px;
}

.u-46b3931b .u-9a0364b9 .about-btn {
  padding: 8px 30px 9px 30px;
  color: var(--accent-color);
  border-radius: 50px;
  transition: 0.3s;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  border: 2px solid var(--accent-color);
}

.u-46b3931b .u-9a0364b9 .about-btn i {
  font-size: 16px;
  padding-left: 5px;
}

.u-46b3931b .u-9a0364b9 .about-btn:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.u-46b3931b .u-2926ba2b i {
  font-size: 40px;
  color: var(--accent-color);
  margin-bottom: 10px;
}

.u-46b3931b .u-2926ba2b h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 10px 0;
}

.u-46b3931b .u-2926ba2b h4 a {
  color: var(--heading-color);
  transition: 0.3s;
}

.u-46b3931b .u-2926ba2b p {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 0;
}

.u-46b3931b .u-2926ba2b:hover h4 a {
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Stats Section
--------------------------------------------------------------*/
.stats .stats-item {
  padding: 10px;
}

.stats .stats-item i {
  font-size: 44px;
  color: var(--accent-color);
  line-height: 0;
  margin-right: 15px;
}

.stats .stats-item .purecounter {
  color: var(--heading-color);
  font-size: 40px;
  display: block;
  font-weight: 700;
  line-height: 40px;
}

.stats .stats-item p {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  padding: 15px 0 0 0;
  margin: 0;
  font-family: var(--heading-font);
  font-size: 14px;
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.u-10cd395c .u-fb05adaf {
  background-color: var(--surface-color);
  box-shadow: 0px 0 30px 0 rgba(0, 0, 0, 0.1);
  padding: 50px 30px;
  transition: all ease-in-out 0.4s;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.u-10cd395c .u-fb05adaf:before {
  content: "";
  position: absolute;
  background: color-mix(in srgb, var(--accent-color), transparent 96%);
  right: -80px;
  top: -80px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  transition: all 0.3s;
  z-index: -1;
}

.u-10cd395c .u-fb05adaf:after {
  content: "";
  position: absolute;
  background: color-mix(in srgb, var(--accent-color), transparent 97%);
  right: -140px;
  top: -140px;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  transition: all 0.3s;
  z-index: -1;
}

.u-10cd395c .u-fb05adaf i {
  background: var(--accent-color);
  color: var(--contrast-color);
  font-size: 24px;
  transition: 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
}

.u-10cd395c .u-fb05adaf h4 {
  font-weight: 600;
  margin: 15px 0 0 0;
  transition: 0.3s;
  font-size: 20px;
}

.u-10cd395c .u-fb05adaf h4 a {
  color: var(--heading-color);
}

.u-10cd395c .u-fb05adaf p {
  line-height: 24px;
  font-size: 14px;
  margin: 10px 0 0 0;
}

.u-10cd395c .u-fb05adaf:hover:before,
.u-10cd395c .u-fb05adaf:hover:after {
  background: var(--accent-color);
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 0px;
}

.u-10cd395c .u-fb05adaf:hover h4 a,
.u-10cd395c .u-fb05adaf:hover p {
  color: var(--contrast-color);
}

.u-10cd395c .u-fb05adaf:hover i {
  background: var(--surface-color);
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Alt Services Section
--------------------------------------------------------------*/
.u-2f9330ce .u-b798abe6 {
  border-radius: 8px;
  overflow: hidden;
}

.u-2f9330ce .u-b798abe6 img {
  transition: 0.6s;
}

.u-2f9330ce .u-27792947 {
  background: color-mix(in srgb, var(--surface-color), transparent 5%);
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  padding: 30px;
  transition: all ease-in-out 0.3s;
  text-align: center;
  border-radius: 8px;
  box-shadow: 0px 0 25px rgba(0, 0, 0, 0.1);
}

.u-2f9330ce .u-27792947 h3 {
  font-weight: 700;
  margin: 10px 0 15px 0;
  font-size: 22px;
  transition: ease-in-out 0.3s;
}

.u-2f9330ce .u-27792947 p {
  color: color-mix(in srgb, var(--default-color), transparent 10%);
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.u-2f9330ce .u-fb05adaf:hover .u-27792947 h3 {
  color: var(--accent-color);
}

.u-2f9330ce .u-fb05adaf:hover .u-b798abe6 img {
  transform: scale(1.2);
}

/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.u-9f034b63 .u-66fc42a1 {
  background-color: var(--surface-color);
  display: flex;
  align-items: center;
  padding: 20px;
  transition: 0.3s;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  position: relative;
}

.u-9f034b63 .u-66fc42a1 i {
  font-size: 32px;
  padding-right: 10px;
  line-height: 0;
}

.u-9f034b63 .u-66fc42a1 h3 {
  font-weight: 700;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-size: 16px;
}

.u-9f034b63 .u-66fc42a1 h3 a {
  color: var(--heading-color);
  transition: 0.3s;
}

.u-9f034b63 .u-66fc42a1:hover {
  border-color: var(--accent-color);
}

.u-9f034b63 .u-66fc42a1:hover h3 a {
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/
.u-59aab28b .u-01233256 {
  background-color: var(--surface-color);
  box-shadow: 0 3px 20px -2px rgba(0, 0, 0, 0.1);
  border-top: 4px solid var(--background-color);
  padding: 60px 40px;
  height: 100%;
  border-radius: 5px;
}

.u-59aab28b h3 {
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 20px;
}

.u-59aab28b h4 {
  color: var(--accent-color);
  font-size: 48px;
  font-weight: 400;
  font-family: var(--heading-font);
  margin-bottom: 0;
}

.u-59aab28b h4 sup {
  font-size: 28px;
}

.u-59aab28b h4 span {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 18px;
}

.u-59aab28b ul {
  padding: 20px 0;
  list-style: none;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  text-align: left;
  line-height: 20px;
}

.u-59aab28b ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.u-59aab28b ul i {
  color: #059652;
  font-size: 24px;
  padding-right: 3px;
}

.u-59aab28b ul .u-6ec66e12 {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.u-59aab28b ul .u-6ec66e12 i {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.u-59aab28b ul .u-6ec66e12 span {
  text-decoration: line-through;
}

.u-59aab28b .u-36735a8e {
  color: var(--accent-color);
  display: inline-block;
  padding: 8px 35px 10px 35px;
  border-radius: 50px;
  transition: none;
  font-size: 16px;
  font-weight: 500;
  font-family: var(--heading-font);
  transition: 0.3s;
  border: 1px solid var(--accent-color);
}

.u-59aab28b .u-36735a8e:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.u-59aab28b .u-dd0d24a4 {
  border-top-color: var(--accent-color);
}

.u-59aab28b .u-dd0d24a4 .u-36735a8e {
  background: var(--accent-color);
  color: var(--contrast-color);
}

@media (max-width: 992px) {
  .u-59aab28b .box {
    max-width: 60%;
    margin: 0 auto 30px auto;
  }
}

@media (max-width: 767px) {
  .u-59aab28b .box {
    max-width: 80%;
    margin: 0 auto 30px auto;
  }
}

@media (max-width: 420px) {
  .u-59aab28b .box {
    max-width: 100%;
    margin: 0 auto 30px auto;
  }
}

/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq .faq-item {
  margin: 20px 0;
  padding: 20px 0;
  border-bottom: 1px solid
    color-mix(in srgb, var(--default-color), transparent 85%);
}

.faq .faq-item i {
  color: var(--accent-color);
  font-size: 18px;
  margin-right: 10px;
}

.faq .faq-item h4 {
  font-size: 16px;
  line-height: 26px;
  font-weight: 700;
}

.faq .faq-item p {
  font-size: 15px;
}

.faq .faq-item:first-child {
  padding-top: 0;
  margin-top: 0;
}

.faq .faq-item:last-child {
  border: 0;
  padding-bottom: 0;
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.u-2f8a6bf3 {
  background-image: url("../img/contact-bg.png");
  background-position: left center;
  background-repeat: no-repeat;
  position: relative;
}

@media (max-width: 640px) {
  .u-2f8a6bf3 {
    background-position: center 50px;
    background-size: contain;
  }
}

.u-2f8a6bf3:before {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 30%);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

.u-2f8a6bf3 .u-053099b7 + .u-053099b7 {
  margin-top: 40px;
}

.u-2f8a6bf3 .u-053099b7 i {
  background: var(--accent-color);
  color: var(--contrast-color);
  font-size: 20px;
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
  margin-right: 15px;
}

.u-2f8a6bf3 .u-053099b7 h3 {
  padding: 0;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
}

.u-2f8a6bf3 .u-053099b7 p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
}

.u-2f8a6bf3 .php-email-form {
  height: 100%;
}

.u-2f8a6bf3 .php-email-form input[type="text"],
.u-2f8a6bf3 .php-email-form input[type="email"],
.u-2f8a6bf3 .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 50%
  );
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.u-2f8a6bf3 .php-email-form input[type="text"]:focus,
.u-2f8a6bf3 .php-email-form input[type="email"]:focus,
.u-2f8a6bf3 .php-email-form textarea:focus {
  border-color: var(--accent-color);
}

.u-2f8a6bf3 .php-email-form input[type="text"]::placeholder,
.u-2f8a6bf3 .php-email-form input[type="email"]::placeholder,
.u-2f8a6bf3 .php-email-form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.u-2f8a6bf3 .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;
}

.u-2f8a6bf3 .php-email-form button[type="submit"]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}



/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .services-list {
  background-color: var(--surface-color);
  padding: 10px 30px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  margin-bottom: 20px;
}

.service-details .services-list a {
  display: block;
  line-height: 1;
  padding: 8px 0 8px 15px;
  border-left: 3px solid
    color-mix(in srgb, var(--default-color), transparent 70%);
  margin: 20px 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  transition: 0.3s;
}

.service-details .services-list a.u-c76a5e84 {
  color: var(--heading-color);
  font-weight: 700;
  border-color: var(--accent-color);
}

.service-details .services-list a:hover {
  border-color: var(--accent-color);
}

.service-details .services-img {
  margin-bottom: 20px;
}

.service-details h3 {
  font-size: 26px;
  font-weight: 700;
}

.service-details h4 {
  font-size: 20px;
  font-weight: 700;
}

.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: 20px;
  margin-right: 8px;
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/

.u-251d1646 span {
  margin-left: 10px;
  margin-right: 10px;
}

.u-777a526d {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translate(-50%);
  z-index: 999;
  width: 100%;
  background: #fff;
}

.u-c3d48e95 {
  padding: 16px 38px 16px 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  @media screen and (min-width: 1440px) {
    padding: 20px 34px;
    flex-direction: row;
    justify-content: space-between;
  }
}

.u-e8db0b7e {
  width: 100%;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.5;
  text-align: center;
  color: #191919;
  font-family: "Raleway", sans-serif;
  margin-bottom: 24px;
  @media screen and (min-width: 1440px) {
    width: 595px;
    margin-bottom: 0;
  }
}

.u-bd7868cb {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 24px;
  @media screen and (min-width: 1440px) {
    flex-direction: row;
    gap: 26px;
  }
}

.u-0f6a8efc {
  width: 200px;
  height: 50px;
  border-radius: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: opacity 300ms ease;
}

.u-0f6a8efc:hover {
  opacity: 0.8;
}

.u-e7698522 {
  background-color: #191919;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.5;
  color: #fff;
  font-family: "Raleway", sans-serif;
}

.u-9c6667c6 {
  border: 1px solid #191919;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.5;
  color: #191919;
  font-family: "Raleway", sans-serif;
}
