/* Fonts */
@font-face {
  font-family: "EurostileHeading";
  src: url("../fonts/EuroStyle Normal.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

:root {
  --default-font: "Poppins", sans-serif, Arial, 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: "EurostileHeading", "Roboto Mono", sans-serif;
  --nav-font: "Poppins", 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: #f1f5f7;
  /* Background color for the entire website, including individual sections */
  --default-color: #498a7e;
  /* Default color used for the majority of the text content across the entire website */
  --heading-color: #57585a;
  /* Color for headings, subheadings and title throughout the website */
  --accent-color: #008b7f;
  /* 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: #313336;
  /* The default color of the main navmenu links */
  --nav-hover-color: #008b7f;
  /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff;
  /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff;
  /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #313336;
  /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #5baa9a;
  /* 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: #f8fbfc;
  --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(--default-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);
  }
}

.gradient-button {
  position: relative;
  font-family: inherit;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.05em;
  border-radius: 0.8em;
  cursor: pointer;
  border: none;
  background: #008b7f;
  color: ghostwhite;
  overflow: hidden;
  border-radius: 999px;
  transition: all 0.3s ease-in-out;
  padding: 8px 20px;
}

.gradient-button:hover {
  color: var(--contrast-color);
  transform: scale(1.05);
  opacity: 0.9;
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
}

.gradient-button i {
  width: 1.5em;
  height: 1.5em;
  margin-right: 0.5em;
}

.gradient-button span {
  position: relative;
  z-index: 10;
  transition: color 0.4s;
  display: inline-flex;
  align-items: center;
  padding: 0.8em 1.2em 0.8em 1.05em;
}

/* .gradient-button::before,
.gradient-button::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
} */

/* .gradient-button::before {
  content: "";
  background: #27ae60;
  width: 120%;
  left: -10%;
  transform: skew(30deg);
  transition: transform 0.4s cubic-bezier(0.3, 1, 0.8, 1);
} */

/* .gradient-button:hover::before {
  transform: translate3d(100%, 0, 0);
} */

.gradient-button:active {
  transform: scale(0.95);
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 10px 0;
  transition: all 0.5s;
  z-index: 997;
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 55px;
  margin-right: 8px;
}

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
}

@media (max-width: 480px) {
  .header .logo img {
    max-height: 40px;
  }

  .header .logo h1 {
    font-size: 24px;
  }
}

.header .btn-getstarted,
.header .btn-getstarted:focus {
  color: var(--contrast-color);
  background: linear-gradient(to right, #27ae60, #a8eb12);
  font-size: 14px;
  padding: 8px 25px;
  margin: 0 0 0 30px;
  border-radius: 50px;
  /* transition: 0.3s; */
  transition: all 0.3s ease-in-out;
  text-align: center;
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  color: var(--contrast-color);
  transform: scale(1.05);
  opacity: 0.9;
  /* background: color-mix(in srgb, var(--accent-color), transparent 15%); */
}
/* Make header text solid white */
.niv-das-page #header .navmenu ul > li > a,
.niv-das-page #header .logo h1 {
  color: #ffffff; /* Solid White */
}

/* Keep hover/active accent color */
.niv-das-page #header .navmenu ul > li > a:hover,
.niv-das-page #header .navmenu ul > li > a.active {
  color: #00ff88; /* Green accent */
}

/* Make sure it stays white on scroll */
.niv-das-page.scrolled #header .navmenu ul > li > a,
.niv-das-page.scrolled #header .logo h1 {
  color: #ffffff; /* Solid White */
}

/* Keep hover/active on scroll */
.niv-das-page.scrolled #header .navmenu ul > li > a:hover,
.niv-das-page.scrolled #header .navmenu ul > li > a.active {
  color: #00ff88; /* Green accent */
}

@media (max-width: 1200px) {
  .header .logo {
    order: 1;
  }

  .header .btn-getstarted {
    order: 2;
    margin: 0 15px 0 0;
    padding: 6px 15px;
  }

  .header .navmenu {
    order: 3;
  }
}

.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

/* Index Page Header
------------------------------*/
.index-page .header {
  --background-color: rgba(255, 255, 255, 0);
}

/* Index Page Header on Scroll
------------------------------*/
.index-page.scrolled .header {
  --background-color: #ffffff;
}

/*--------------------------------------------------------------
# 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: 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;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu li:last-child a {
    padding-right: 0;
  }

  .navmenu li:hover > a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-hover-color);
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu > ul > li.dropdown > ul > li a {
    color: #000000 !important; /* Forces black text */
    background-color: #ffffff !important; /* Ensures a white background for the link area */
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover > a {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .dropdown:hover > ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: 100%;
    margin-left: 10px;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover > ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible;
  }

  .navmenu .megamenu {
    position: static;
  }

  .navmenu .megamenu 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 .megamenu ul li {
    flex: 1;
  }

  .navmenu .megamenu ul li a,
  .navmenu .megamenu ul li:hover > a {
    padding: 10px 20px;
    font-size: 15px;
    color: var(--nav-dropdown-color);
  }

  .navmenu .megamenu ul li a:hover,
  .navmenu .megamenu ul li .active,
  .navmenu .megamenu ul li .active:hover {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .megamenu:hover > ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }
}

/* Mobile Navigation */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    transition: all 0.5s ease-in-out;
    box-shadow: none;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown > .dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu > ul {
    display: block;
  }
}

/* Products Mega Menu 1 - Desktop */
@media (min-width: 1200px) {
  .navmenu .products-megamenu-1 {
    position: static;
    /*  Hide Desktop Mega Menu 1 in Desktop */
    /* Bootstrap Tabs Navigation */
    /* Tab Content */
  }

  .navmenu .products-megamenu-1 .mobile-megamenu {
    display: none;
  }

  .navmenu .products-megamenu-1 .desktop-megamenu,
  .navmenu .products-megamenu-1 .active,
  .navmenu .products-megamenu-1 .active:focus {
    background-color: var(--nav-dropdown-background-color);
  }

  .navmenu .products-megamenu-1 .desktop-megamenu {
    box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.1);
    position: absolute;
    top: 130%;
    left: 0;
    right: 0;
    visibility: hidden;
    opacity: 0;
    transition: 0.3s;
    border-radius: 6px;
    z-index: 99;
    padding: 20px;
    display: flex;
    flex-direction: column;
    max-height: 80vh;
    overflow: hidden;
  }

  .navmenu .products-megamenu-1:hover > .desktop-megamenu {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .products-megamenu-1 .megamenu-tabs {
    margin-bottom: 15px;
  }

  .navmenu .products-megamenu-1 .megamenu-tabs .nav-tabs {
    border-bottom: 1px solid
      color-mix(in srgb, var(--default-color), transparent 90%);
  }

  .navmenu .products-megamenu-1 .megamenu-tabs .nav-tabs .nav-item {
    margin-bottom: 0;
  }

  .navmenu .products-megamenu-1 .megamenu-tabs .nav-tabs .nav-link {
    border: none;
    padding: 10px 20px;
    color: var(--nav-dropdown-color);
    font-weight: 500;
    font-size: 15px;
    transition: 0.3s;
    background-color: transparent;
    border-bottom: 2px solid transparent;
  }

  .navmenu .products-megamenu-1 .megamenu-tabs .nav-tabs .nav-link:hover {
    color: var(--nav-dropdown-hover-color);
    border-color: transparent;
  }

  .navmenu .products-megamenu-1 .megamenu-tabs .nav-tabs .nav-link.active {
    color: var(--accent-color);
    background-color: transparent;
    border-bottom: 2px solid var(--accent-color);
  }

  .navmenu .products-megamenu-1 .megamenu-content {
    flex: 1;
    overflow-y: auto;
    padding-right: 5px;
    /* Hide scrollbar for Chrome, Safari and Opera */
    /* Category Grid */
    /* Product Grid */
  }

  .navmenu .products-megamenu-1 .megamenu-content::-webkit-scrollbar {
    width: 5px;
  }

  .navmenu .products-megamenu-1 .megamenu-content::-webkit-scrollbar-track {
    background: color-mix(in srgb, var(--default-color), transparent 95%);
    border-radius: 10px;
  }

  .navmenu .products-megamenu-1 .megamenu-content::-webkit-scrollbar-thumb {
    background: color-mix(in srgb, var(--default-color), transparent 80%);
    border-radius: 10px;
  }

  .navmenu .products-megamenu-1 .megamenu-content .tab-content {
    display: none;
  }

  .navmenu .products-megamenu-1 .megamenu-content .tab-content.active {
    display: block;
  }

  .navmenu .products-megamenu-1 .megamenu-content .category-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
  }

  .navmenu
    .products-megamenu-1
    .megamenu-content
    .category-grid
    .category-column {
    background-color: color-mix(
      in srgb,
      var(--surface-color),
      var(--accent-color) 3%
    );
    border-radius: 8px;
    padding: 15px;
    transition: 0.3s;
  }

  .navmenu
    .products-megamenu-1
    .megamenu-content
    .category-grid
    .category-column
    h4 {
    color: var(--heading-color);
    font-size: 16px;
    margin-bottom: 15px;
    font-weight: 600;
    padding-bottom: 10px;
    border-bottom: 1px solid
      color-mix(in srgb, var(--default-color), transparent 90%);
    position: relative;
  }

  .navmenu
    .products-megamenu-1
    .megamenu-content
    .category-grid
    .category-column
    h4:after {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--accent-color);
  }

  .navmenu
    .products-megamenu-1
    .megamenu-content
    .category-grid
    .category-column
    ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
  }

  .navmenu
    .products-megamenu-1
    .megamenu-content
    .category-grid
    .category-column
    ul
    li {
    margin-bottom: 10px;
    background-color: none !important;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: start !important;
    width: 100%;
  }

  .navmenu
    .products-megamenu-1
    .megamenu-content
    .category-grid
    .category-column
    ul
    li:last-child {
    margin-bottom: 0;
  }

  .navmenu
    .products-megamenu-1
    .megamenu-content
    .category-grid
    .category-column
    ul
    li
    a {
    color: var(--nav-dropdown-color);
    font-size: 14px;
    transition: 0.3s;
    padding: 0 0 0 20px;
    display: block;
    position: relative;
  }

  .navmenu
    .products-megamenu-1
    .megamenu-content
    .category-grid
    .category-column
    ul
    li
    a:before {
    content: "\f285";
    font-family: "bootstrap-icons";
    position: absolute;
    left: 0;
    top: 2px;
    font-size: 12px;
    color: var(--accent-color);
    opacity: 0.7;
  }

  .navmenu
    .products-megamenu-1
    .megamenu-content
    .category-grid
    .category-column
    ul
    li
    a:hover {
    color: var(--nav-dropdown-hover-color);
    transform: translateX(3px);
  }

  .navmenu
    .products-megamenu-1
    .megamenu-content
    .category-grid
    .category-column
    ul
    li
    a:hover:before {
    opacity: 1;
  }

  .navmenu
    .products-megamenu-1
    .megamenu-content
    .category-grid
    .category-column
    .active {
    background-color: none;
  }

  .navmenu .products-megamenu-1 .megamenu-content .product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding-top: 10px;
  }

  .navmenu .products-megamenu-1 .megamenu-content .product-grid .product-card {
    background-color: var(--surface-color);
    overflow: hidden;
  }

  .navmenu
    .products-megamenu-1
    .megamenu-content
    .product-grid
    .product-card:hover
    .product-image
    img {
    transform: scale(1.1);
  }

  .navmenu
    .products-megamenu-1
    .megamenu-content
    .product-grid
    .product-card
    .product-image {
    height: 160px;
    position: relative;
    overflow: hidden;
  }

  .navmenu
    .products-megamenu-1
    .megamenu-content
    .product-grid
    .product-card
    .product-image
    img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: 0.5s;
  }

  .navmenu
    .products-megamenu-1
    .megamenu-content
    .product-grid
    .product-card
    .product-image
    .badge-new,
  .navmenu
    .products-megamenu-1
    .megamenu-content
    .product-grid
    .product-card
    .product-image
    .badge-sale {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 3px 8px;
    font-size: 11px;
    font-weight: 600;
    border-radius: 3px;
    z-index: 1;
  }

  .navmenu
    .products-megamenu-1
    .megamenu-content
    .product-grid
    .product-card
    .product-image
    .badge-new {
    background-color: #28a745;
    color: white;
  }

  .navmenu
    .products-megamenu-1
    .megamenu-content
    .product-grid
    .product-card
    .product-image
    .badge-sale {
    background-color: #dc3545;
    color: white;
  }

  .navmenu
    .products-megamenu-1
    .megamenu-content
    .product-grid
    .product-card
    .product-info {
    padding: 15px;
    text-align: center;
  }

  .navmenu
    .products-megamenu-1
    .megamenu-content
    .product-grid
    .product-card
    .product-info
    h5 {
    margin: 0 0 5px;
    font-size: 15px;
    font-weight: 600;
    color: var(--heading-color);
  }

  .navmenu
    .products-megamenu-1
    .megamenu-content
    .product-grid
    .product-card
    .product-info
    .price {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 14px;
  }

  .navmenu
    .products-megamenu-1
    .megamenu-content
    .product-grid
    .product-card
    .product-info
    .price
    .original-price {
    text-decoration: line-through;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    margin-right: 5px;
    font-weight: normal;
  }

  .navmenu
    .products-megamenu-1
    .megamenu-content
    .product-grid
    .product-card
    .product-info
    .btn-view {
    display: inline-block;
    padding: 5px 12px;
    background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
    color: var(--accent-color);
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
    transition: 0.3s;
  }

  .navmenu
    .products-megamenu-1
    .megamenu-content
    .product-grid
    .product-card
    .product-info
    .btn-view:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }
}

/* Products Mega Menu 1 - Mobile */
@media (max-width: 1199px) {
  .navmenu .products-megamenu-1 {
    /* Hide Desktop Mega Menu 1 in Mobile */
  }

  .navmenu .products-megamenu-1 .desktop-megamenu {
    display: none;
  }

  .navmenu .products-megamenu-1 .mobile-megamenu {
    position: static;
    display: none;
    z-index: 99;
    padding: 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;
    border-radius: 4px;
    overflow: hidden;
  }

  .navmenu .products-megamenu-1 .mobile-megamenu li {
    position: relative;
    border-bottom: 1px solid
      color-mix(in srgb, var(--default-color), transparent 90%);
  }

  .navmenu .products-megamenu-1 .mobile-megamenu li:last-child {
    border-bottom: none;
  }

  .navmenu .products-megamenu-1 .mobile-megamenu li a {
    padding: 12px 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--nav-dropdown-color);
    font-size: 15px;
    transition: 0.3s;
  }

  .navmenu .products-megamenu-1 .mobile-megamenu li a:hover {
    color: var(--nav-dropdown-hover-color);
    background-color: color-mix(in srgb, var(--default-color), transparent 97%);
  }

  .navmenu .products-megamenu-1 .mobile-megamenu li ul {
    padding: 0;
  }

  .navmenu .products-megamenu-1 .mobile-megamenu.dropdown-active {
    display: block;
  }
}
/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  /* color: var(--nav-color); */
  background-color: var(--background-color);
  font-size: 14px;
  padding-bottom: 50px;
  position: relative;
}

.footer .footer-top {
  padding-top: 50px;
}

.footer .footer-about .logo {
  line-height: 1;
  margin-bottom: 25px;
}

.footer .footer-about .logo img {
  max-height: 125px;
  margin-right: 6px;
}

.footer .footer-about .logo span {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 1px;
  font-family: var(--heading-font);
  color: var(--heading-color);
}

.footer .footer-about p {
  font-size: 14px;
  font-family: var(--heading-font);
}

.footer .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 30%);
  margin-right: 10px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.footer h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
}

.footer .footer-links {
  margin-bottom: 30px;
}

.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-links ul i {
  padding-right: 2px;
  font-size: 12px;
  line-height: 0;
}

.footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  display: inline-block;
  line-height: 1;
}

.footer .footer-links ul a:hover {
  color: var(--accent-color);
}

.footer .footer-contact p {
  margin-bottom: 5px;
}

.footer .footer-newsletter .newsletter-form {
  margin-top: 30px;
  margin-bottom: 15px;
  padding: 6px 8px;
  position: relative;
  border-radius: 50px;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 70%);
  display: flex;
  background-color: var(--surface-color);
  transition: 0.3s;
}

.footer .footer-newsletter .newsletter-form:focus-within {
  border-color: var(--accent-color);
}

.footer .footer-newsletter .newsletter-form input[type="email"] {
  border: 0;
  padding: 4px 10px;
  width: 100%;
  background-color: var(--contrsast-color);
  color: var(--default-color);
}

.footer .footer-newsletter .newsletter-form input[type="email"]:focus-visible {
  outline: none;
}

.footer .footer-newsletter .newsletter-form input[type="submit"] {
  border: 0;
  font-size: 16px;
  padding: 0 20px;
  margin: -7px -9px -7px 0;
  background: linear-gradient(135deg, #2d8c7e, #4db8a8);
  color: var(--contrast-color);
  transition: all 0.3s ease-in-out;
  border-radius: 50px;
}

.footer .footer-newsletter .newsletter-form input[type="submit"]:hover {
  color: var(--contrast-color);
  transform: scale(1.05);
  opacity: 0.9;
}

.footer .copyright {
  padding-top: 25px;
  padding-bottom: 25px;
  border-top: 1px solid
    color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .copyright p {
  margin-bottom: 0;
}

.footer .credits {
  margin-top: 6px;
  font-size: 13px;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  background-color: var(--background-color);
  transition: all 0.6s ease-out;
  width: 100%;
  height: 100vh;
}

#preloader:before,
#preloader:after {
  content: "";
  position: absolute;
  border: 4px solid var(--accent-color);
  border-radius: 50%;
  animation: animate-preloader 2s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}

#preloader:after {
  animation-delay: -0.5s;
}

@keyframes animate-preloader {
  0% {
    width: 10px;
    height: 10px;
    top: calc(50% - 5px);
    left: calc(50% - 5px);
    opacity: 1;
  }

  100% {
    width: 72px;
    height: 72px;
    top: calc(50% - 36px);
    left: calc(50% - 36px);
    opacity: 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: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
  bottom: 15px;
}

/*--------------------------------------------------------------
# Disable aos animation 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: 25px 0;
  position: relative;
}

.page-title h1 {
  font-size: 24px;
  font-weight: 700;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
}

.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,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 100px;
  overflow: clip;
}

@media (max-width: 1199px) {
  section,
  .section {
    scroll-margin-top: 66px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding: 30px 0;
  margin-bottom: 30px;
  position: relative;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 0;
  position: relative;
  z-index: 2;
  color: var(--default-color);
}

.section-title span {
  position: absolute;
  top: 4px;
  color: color-mix(in srgb, var(--heading-color), transparent 95%);
  left: 0;
  right: 0;
  z-index: 1;
  font-weight: 700;
  font-size: 52px;
  text-transform: uppercase;
  line-height: 1;
}

.section-title p {
  margin-bottom: 0;
  position: relative;
  z-index: 2;
}

@media (max-width: 575px) {
  .section-title h2 {
    font-size: 28px;
    margin-bottom: 15px;
  }

  .section-title span {
    font-size: 38px;
  }
}

.section-title-products {
  text-align: center;
  position: relative;
}

.section-title-products h2 {
  /* font-size: 32px; */
  font-weight: 700;
  position: relative;
}

.section-title-products h2:before,
.section-title-products h2:after {
  content: "";
  width: 50px;
  height: 2px;
  background: var(--accent-color);
  display: inline-block;
}

.section-title-products h2:before {
  margin: 0 15px 10px 0;
}

.section-title-products h2:after {
  margin: 0 0 10px 15px;
}

.section-title-products p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  min-height: 100vh;
  position: relative;
  padding: 0px 0 40px 0;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero .hero-bg img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  /* object-fit: cover; */
  z-index: 1;
}

.hero .hero-bg::before {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 100%);
  position: absolute;
  inset: 0;
  z-index: 2;
}

.hero .container {
  position: relative;
  z-index: 3;
}

.hero h1 {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
  margin-top: 100px;
}

.hero h1 span {
  color: var(--accent-color);
}

.hero p {
  color: color-mix(in srgb, var(--nav-color), transparent 30%);
  margin: 5px 0 30px 0px;
  font-size: 20px;
  font-weight: 400;
}

.hero p strong {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-weight: 700;
}

@media (min-width: 768px) {
  .hero .hero-img {
    max-width: 600px;
    object-fit: cover;
  }
}

.hero .btn-get-started {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 28px;
  border-radius: 50px;
  transition: 0.5s;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}

.hero .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);
}

.hero .btn-watch-video {
  font-size: 16px;
  transition: 0.5s;
  margin-left: 25px;
  color: var(--default-color);
  font-weight: 600;
}

.hero .btn-watch-video i {
  color: var(--accent-color);
  font-size: 32px;
  transition: 0.3s;
  line-height: 0;
  margin-right: 8px;
}

.hero .btn-watch-video:hover {
  color: var(--accent-color);
}

.hero .btn-watch-video:hover i {
  color: color-mix(in srgb, var(--accent-color), transparent 15%);
}

@media (max-width: 640px) {
  .hero h1 {
    font-size: 28px;
    line-height: 36px;
    margin-top: 0px;
  }

  .hero p {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }

  .hero .btn-get-started,
  .hero .btn-watch-video {
    font-size: 13px;
  }

  .hero .hero-bg img {
    background-image: url("assets/img/logo.png");
    object-fit: cover;
    object-position: left;
  }
}

/*--------------------------------------------------------------
# Featured Services Section
--------------------------------------------------------------*/
.featured-services {
  padding: 60px 0;
}

.featured-services .service-item {
  position: relative;
  padding-top: 20px;
}

.featured-services .service-item .icon {
  background-color: color-mix(in srgb, var(--accent-color), transparent 80%);
  width: 72px;
  height: 72px;
  position: relative;
  margin-right: 15px;
  line-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: ease-in-out 0.3s;
}

.featured-services .service-item .icon i {
  color: var(--accent-color);
  font-size: 32px;
  z-index: 2;
  position: relative;
}

.featured-services .service-item .title {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 18px;
}

.featured-services .service-item .title a {
  color: var(--heading-color);
}

.featured-services .service-item .title a:hover {
  color: var(--accent-color);
}

.featured-services .service-item .description {
  font-size: 14px;
}

.featured-services .service-item:hover .icon {
  background-color: var(--accent-color);
}

.featured-services .service-item:hover .icon i {
  color: var(--contrast-color);
}

/*--------------------------------------------------------------
# About 2 Section
--------------------------------------------------------------*/
.about-2 .content {
  background-color: var(--heading-color);
  padding-top: 50px;
  padding-bottom: 50px;
  border-radius: 20px;
}

.about-2 .content-subtitle {
  font-size: 15px;
  margin-bottom: 10px;
  display: block;
  color: var(--nav-color);
}

.about-2 .content-title {
  color: black;
  font-size: 22px;
  margin-bottom: 30px;
}

.about-2 p {
  line-height: 1.7;
  color: white;
}

.about-2 .btn-get-started {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 30px;
  padding: 8px 30px;
  border: 2px solid transparent;
  transition: 0.3s all ease-in-out;
  font-size: 14px;
}

.about-2 .btn-get-started:hover {
  border-color: var(--accent-color);
  background-color: transparent;
  color: var(--accent-color);
}

.about-2 .lead {
  line-height: 1.6;
  font-size: 18px;
  font-weight: normal;
  color: white;
}

.about-2 img {
  border-radius: 20px;
  border: 5px solid var(--nav-color);
}

/*--------------------------------------------------------------
# Products Section
--------------------------------------------------------------*/
.products .nav-tabs {
  border: 0;
}

.products .nav-link {
  background-color: var(--background-color);
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 0 15px;
  padding: 10px 5px;
  transition: 0.3s;
  border-radius: 0;
  cursor: pointer;
  height: 100%;
  border: 0;
  border-bottom: 2px solid
    color-mix(in srgb, var(--default-color), transparent 80%);
}

@media (max-width: 575px) {
  .products .nav-link {
    margin: 0 10px;
    padding: 10px 0;
  }
}

.products .nav-link i {
  padding-right: 15px;
  font-size: 48px;
}

.products .nav-link h4 {
  font-size: 18px;
  font-weight: 400;
  margin: 0;
  font-family: var(--default-font);
}

@media (max-width: 575px) {
  .products .nav-link h4 {
    font-size: 16px;
  }
}

.products .nav-link:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.products .nav-link.active {
  background-color: var(--background-color);
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.products .tab-header {
  padding: 30px 0;
}

.products .tab-header p {
  font-size: 14px;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 0;
}

.products .tab-header h3 {
  font-size: 48px;
  font-weight: 700;
  color: var(--accent-color);
}

.products .products-item {
  text-align-last: center;
}

.products .products-item .products-img {
  padding: 0 10px;
  margin-bottom: 15px;
}

.products .products-item h4 {
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 5px;
  font-family: var(--default-font);
}

.products .products-item .ingredients {
  font-family: var(--nav-font);
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  margin-bottom: 5px;
}

.products .products-item .price {
  font-size: 24px;
  font-weight: 700;
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# 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;
  }
}

/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features .features-item {
  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 70%);
  border-radius: 20px;
  position: relative;
}

.features .features-item i {
  font-size: 32px;
  padding-right: 10px;
  line-height: 0;
}

.features .features-item h3 {
  font-weight: 700;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-size: 16px;
}

.features .features-item h3 a {
  color: var(--heading-color);
  transition: 0.3s;
}

.features .features-item:hover {
  border-color: var(--accent-color);
}

.features .features-item:hover h3 a {
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Features Details Section
--------------------------------------------------------------*/
.features-details .features-item + .features-item {
  margin-top: 60px;
}

.features-details .features-item .content {
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  padding: 30px;
  border-radius: 10px;
}

.features-details .features-item h3 {
  font-weight: 700;
  font-size: 26px;
  margin-bottom: 15px;
}

.features-details .features-item .more-btn {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 6px 30px;
  border-radius: 6px;
}

.features-details .features-item .more-btn:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.features-details .features-item ul {
  list-style: none;
  padding: 0;
}

.features-details .features-item ul li {
  padding-bottom: 10px;
  display: flex;
  align-items: center;
}

.features-details .features-item ul li:last-child {
  padding-bottom: 0;
}

.features-details .features-item ul i {
  font-size: 20px;
  margin-right: 10px;
  color: var(--accent-color);
}

.features-details .features-item img {
  border-radius: 15px;
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .service-item {
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  height: 100%;
  padding: 30px;
  transition: 0.3s;
  border-radius: 10px;
  display: flex;
}

.services .service-item .icon {
  font-size: 32px;
  border-radius: 10px;
  position: relative;
  margin-right: 25px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  flex-shrink: 0;
}

.services .service-item h3 {
  color: color-mix(in srgb, var(--heading-color), transparent 25%);
  font-weight: 700;
  font-size: 22px;
  transition: 0.3s;
}

.services .service-item p {
  margin-bottom: 0;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  transition: 0.3s;
}

.services .service-item .read-more {
  display: inline-flex;
  align-items: center;
  margin-top: 10px;
  transition: 0.3s;
  font-size: 14px;
}

.services .service-item .read-more i {
  margin-left: 10px;
}

.services .service-item.item-cyan .icon {
  color: #0dcaf0;
  border: 1px solid #0dcaf0;
  background: rgba(13, 202, 240, 0.1);
}

.services .service-item.item-orange .icon {
  color: #fd7e14;
  border: 1px solid #fd7e14;
  background: rgba(253, 126, 20, 0.1);
}

.services .service-item.item-teal .icon {
  color: #20c997;
  border: 1px solid #20c997;
  background: rgba(32, 201, 151, 0.1);
}

.services .service-item.item-red .icon {
  color: #df1529;
  border: 1px solid #df1529;
  background: rgba(223, 21, 4, 0.1);
}

.services .service-item.item-indigo .icon {
  color: #6610f2;
  border: 1px solid #6610f2;
  background: rgba(102, 16, 242, 0.1);
}

.services .service-item.item-pink .icon {
  color: #f3268c;
  border: 1px solid #f3268c;
  background: rgba(243, 38, 140, 0.1);
}

.services .service-item:hover {
  box-shadow: 0px 2px 25px rgba(0, 0, 0, 0.1);
}

.services .service-item:hover h3 {
  color: var(--heading-color);
}

.services .service-item:hover p {
  color: color-mix(in srgb, var(--default-color), transparent 10%);
}

/*--------------------------------------------------------------
# More Features Section
--------------------------------------------------------------*/
.more-features .features-image {
  position: relative;
  min-height: 400px;
}

.more-features .features-image img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.more-features h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
}

.more-features .icon-box {
  margin-top: 30px;
}

.more-features .icon-box i {
  color: var(--accent-color);
  margin-right: 15px;
  font-size: 24px;
  line-height: 1.2;
}

.more-features .icon-box h4 {
  font-weight: 600;
  margin-bottom: 10px;
  font-size: 18px;
}

.more-features .icon-box p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/
.pricing .pricing-item {
  background-color: color-mix(in srgb, var(--accent-color), transparent 96%);
  padding: 40px 40px;
  height: 100%;
  border-radius: 15px;
}

.pricing h3 {
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 20px;
}

.pricing h4 {
  color: var(--accent-color);
  font-size: 48px;
  font-weight: 700;
  font-family: var(--heading-font);
  margin-bottom: 0;
}

.pricing h4 sup {
  font-size: 28px;
}

.pricing h4 span {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 18px;
  font-weight: 500;
}

.pricing .description {
  font-size: 14px;
}

.pricing .cta-btn {
  border: 1px solid var(--default-color);
  color: var(--default-color);
  display: block;
  text-align: center;
  padding: 10px 35px;
  border-radius: 5px;
  font-size: 16px;
  font-weight: 500;
  font-family: var(--heading-font);
  transition: 0.3s;
  margin-top: 20px;
  margin-bottom: 6px;
}

.pricing .cta-btn:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  border-color: var(--accent-color);
}

.pricing ul {
  padding: 0;
  list-style: none;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  text-align: left;
  line-height: 20px;
}

.pricing ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.pricing ul li:last-child {
  padding-bottom: 0;
}

.pricing ul i {
  color: #059652;
  font-size: 24px;
  padding-right: 3px;
}

.pricing ul .na {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.pricing ul .na i {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.pricing ul .na span {
  text-decoration: line-through;
}

.pricing .featured {
  position: relative;
}

.pricing .featured .popular {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 4px 15px 6px 15px;
  margin: 0;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 500;
}

.pricing .featured .cta-btn {
  background: var(--accent-color);
  color: var(--contrast-color);
  border-color: var(--accent-color);
}

@media (max-width: 992px) {
  .pricing .box {
    max-width: 60%;
    margin: 0 auto 30px auto;
  }
}

@media (max-width: 767px) {
  .pricing .box {
    max-width: 80%;
    margin: 0 auto 30px auto;
  }
}

@media (max-width: 420px) {
  .pricing .box {
    max-width: 100%;
    margin: 0 auto 30px auto;
  }
}

/*--------------------------------------------------------------
# Software Section
--------------------------------------------------------------*/

.software .content .service-item {
  background-color: var(--surface-color);
  padding: 20px 30px;
  border-top: 1px solid
    color-mix(in srgb, var(--default-color), transparent 90%);
  border-left: 1px solid
    color-mix(in srgb, var(--default-color), transparent 90%);
  position: relative;
}

.software .content .service-item .number {
  position: absolute;
  right: 10px;
  top: 10px;
  font-weight: 400;
  color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.software .content .service-item .service-item-icon {
  position: relative;
  margin-bottom: 20px;
  color: var(--accent-color);
}

.software .content .service-item .service-item-icon img {
  width: 50px;
}

.software .content .service-item .service-item-icon:before {
  position: absolute;
  content: "";
  transform: rotate(45deg);
  z-index: -1;
  left: -20px;
  border-top: 40px solid transparent;
  border-bottom: 40px solid transparent;
  border-right: 40px solid var(--accent-color);
  display: none;
}

.software .content .service-item .service-item-icon > span {
  color: var(--default-color);
  font-size: 4rem;
}

.software .content .service-item .service-item-content .service-heading {
  font-size: 20px;
  color: var(--default-color);
  font-weight: 400;
}

.software .content .service-item .service-item-content p {
  font-size: 15px;
}

@media (min-width: 769px) {
  .software .content [class^="col-"]:nth-child(4n + 4) .service-item {
    border-right: 1px solid
      color-mix(in srgb, var(--default-color), transparent 90%);
  }

  .software .content [class^="col-"]:nth-last-child(-n + 4) .service-item {
    border-bottom: 1px solid
      color-mix(in srgb, var(--default-color), transparent 90%);
  }
}

@media (max-width: 768px) {
  .software .content [class^="col-"]:nth-child(2n + 2) .service-item {
    border-right: 1px solid
      color-mix(in srgb, var(--default-color), transparent 90%);
  }

  .software .content [class^="col-"]:last-child .service-item,
  .software .content [class^="col-"]:nth-last-child(2) .service-item {
    border-bottom: 1px solid
      color-mix(in srgb, var(--default-color), transparent 90%);
  }
}

@media (max-width: 576px) {
  .software .content [class^="col-"] .service-item {
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    margin-bottom: 10px;
  }
}

/*--------------------------------------------------------------
# After Sales Section
--------------------------------------------------------------*/
.after-sales .after-sales-image {
  position: relative;
  min-height: 400px;
}

.after-sales .after-sales-image img {
  /* position: absolute; */
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.after-sales h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.after-sales h3:after {
  content: "";
  background: var(--accent-color);
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  left: 0;
  bottom: 0;
}

.after-sales .icon-box {
  margin-top: 50px;
}

.after-sales .icon-box i {
  color: var(--accent-color);
  background-color: var(--surface-color);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 25px;
  font-size: 28px;
  width: 56px;
  height: 56px;
  border-radius: 4px;
  line-height: 0;
  box-shadow: 0px 2px 30px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
}

.after-sales .icon-box:hover i {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.after-sales .icon-box h4 {
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 18px;
}

.after-sales .icon-box h4 a {
  color: var(--heading-color);
  transition: 0.3s;
}

.after-sales .icon-box h4 a:hover {
  color: var(--accent-color);
}

.after-sales .icon-box p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.after-sales .author .pic {
  flex: 0 0 50px;
  margin-right: 20px;
}

.after-sales .author .author-name {
  line-height: 1.3;
}

.after-sales .author .author-name strong {
  color: var(--heading-color);
  font-weight: normal;
}

.after-sales .author .author-name span {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .testimonial-item {
  background-color: var(--surface-color);
  box-shadow: 0px 0 20px rgba(0, 0, 0, 0.1);
  box-sizing: content-box;
  padding: 30px;
  margin: 40px 30px;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  text-align: center;
  transition: 0.3s;
}

.testimonials .testimonial-item .stars {
  margin-bottom: 15px;
}

.testimonials .testimonial-item .stars i {
  color: #ffc107;
  margin: 0 1px;
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50%;
  border: 4px solid var(--background-color);
  margin: 0 auto;
}

.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 0;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin: 0;
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 auto 15px auto;
}

.testimonials .swiper-wrapper {
  height: auto;
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: color-mix(in srgb, var(--default-color), transparent 85%);
  opacity: 1;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

.testimonials .swiper-slide {
  opacity: 0.3;
}

@media (max-width: 1199px) {
  .testimonials .swiper-slide-active {
    opacity: 1;
  }

  .testimonials .swiper-pagination {
    margin-top: 0;
  }

  .testimonials .testimonial-item {
    margin: 40px 20px;
  }
}

@media (min-width: 1200px) {
  .testimonials .swiper-slide-next {
    opacity: 1;
    transform: scale(1.12);
  }
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-item {
  background-color: var(--surface-color);
  padding: 20px 0 30px 0;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
}

.contact .info-item i {
  font-size: 20px;
  color: var(--accent-color);
  width: 56px;
  height: 56px;
  font-size: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  transition: all 0.3s ease-in-out;
  border-radius: 50%;
  border: 2px dotted color-mix(in srgb, var(--accent-color), transparent 40%);
}

.contact .info-item h3 {
  font-size: 20px;
  font-size: 18px;
  font-weight: 700;
  margin: 10px 0;
}

.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
}

.contact .php-email-form {
  background-color: var(--surface-color);
  height: 100%;
  padding: 30px;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
}

@media (max-width: 575px) {
  .contact .php-email-form {
    padding: 20px;
  }
}

.contact .php-email-form input[type="text"],
.contact .php-email-form input[type="email"],
.contact .php-email-form input[type="tel"],
.contact .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 .php-email-form input[type="text"]:focus,
.contact .php-email-form input[type="email"]:focus,
.contact .php-email-form textarea:focus {
  border-color: var(--accent-color);
}

.contact .php-email-form input[type="text"]::placeholder,
.contact .php-email-form input[type="email"]::placeholder,
.contact .php-email-form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.contact .php-email-form button[type="submit"] {
  color: var(--contrast-color);
  background: var(--accent-color);
  border: 0;
  padding: 10px 30px;
  transition: 0.4s;
  border-radius: 50px;
}

.contact .php-email-form button[type="submit"]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .service-box {
  background-color: var(--surface-color);
  padding: 20px;
  box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.1);
}

.service-details .service-box + .service-box {
  margin-top: 30px;
}

.service-details .service-box h4 {
  font-size: 20px;
  font-weight: 700;
  border-bottom: 2px solid
    color-mix(in srgb, var(--default-color), transparent 92%);
  padding-bottom: 15px;
  margin-bottom: 15px;
}

.service-details .services-list {
  background-color: var(--surface-color);
}

.service-details .services-list a {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  display: flex;
  align-items: center;
  padding: 12px 15px;
  margin-top: 15px;
  transition: 0.3s;
}

.service-details .services-list a:first-child {
  margin-top: 0;
}

.service-details .services-list a i {
  font-size: 16px;
  margin-right: 8px;
  color: var(--accent-color);
}

.service-details .services-list a.active {
  color: var(--contrast-color);
  background-color: var(--accent-color);
}

.service-details .services-list a.active i {
  color: var(--contrast-color);
}

.service-details .services-list a:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  color: var(--accent-color);
}

.service-details .download-catalog a {
  color: var(--default-color);
  display: flex;
  align-items: center;
  padding: 10px 0;
  transition: 0.3s;
  border-top: 1px solid
    color-mix(in srgb, var(--default-color), transparent 90%);
}

.service-details .download-catalog a:first-child {
  border-top: 0;
  padding-top: 0;
}

.service-details .download-catalog a:last-child {
  padding-bottom: 0;
}

.service-details .download-catalog a i {
  font-size: 24px;
  margin-right: 8px;
  color: var(--accent-color);
}

.service-details .download-catalog a:hover {
  color: var(--accent-color);
}

.service-details .help-box {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  margin-top: 30px;
  padding: 30px 15px;
}

.service-details .help-box .help-icon {
  font-size: 48px;
}

.service-details .help-box h4,
.service-details .help-box a {
  color: var(--contrast-color);
}

.service-details .services-img {
  margin-bottom: 20px;
}

.service-details h3 {
  font-size: 26px;
  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
--------------------------------------------------------------*/
.starter-section {
  /* Add your styles here */
}

/*--------------------------------------------------------------
# Product Hero Section
--------------------------------------------------------------*/
.product-hero {
  width: 100%;
  min-height: 70vh;
  position: relative;
  padding: 120px 0 120px 0;
  display: flex;
  align-items: center;
}

.product-hero .hero-bg {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

/* .product-hero:before {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 10%);
  position: absolute;
  inset: 0;
  z-index: 2;
} */

.product-hero .container {
  position: relative;
  z-index: 3;
}

.product-hero h1 {
  margin: 0 0 20px 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
  color: color-mix(in srgb, black, transparent 30%);
}

.product-hero h1 span {
  color: var(--heading-color);
  border-bottom: 4px solid var(--accent-color);
}

.product-hero p {
  color: color-mix(in srgb, black, transparent 30%);
  margin: 5px 0 30px 0;
  font-size: 22px;
  font-weight: 400;
}

.product-hero .btn-get-started {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-family: var(--heading-font);
  font-weight: 400;
  font-size: 15px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 28px 12px 28px;
  border-radius: 50px;
  transition: 0.5s;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}

.product-hero .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);
}

.product-hero .btn-watch-video {
  font-size: 16px;
  transition: 0.5s;
  margin-left: 25px;
  color: var(--default-color);
  font-weight: 600;
}

.product-hero .btn-watch-video i {
  color: var(--accent-color);
  font-size: 32px;
  transition: 0.3s;
  line-height: 0;
  margin-right: 8px;
}

.product-hero .btn-watch-video:hover {
  color: var(--accent-color);
}

.product-hero .btn-watch-video:hover i {
  color: color-mix(in srgb, var(--accent-color), transparent 15%);
}

.product-hero .animated {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

.product-hero-image-position {
  bottom: -125%;
  max-width: 110%;
  height: 250%;
}

.product-hero-image-position-old {
  bottom: -23%;
  /* left: 62%; */
}

@media (max-width: 640px) {
  .product-hero h1 {
    font-size: 28px;
    line-height: 36px;
  }

  .product-hero p {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }

  .product-hero .btn-get-started,
  .product-hero .btn-watch-video {
    font-size: 13px;
  }

  .product-hero-image-position {
    top: 50%;
    left: 25.5%;
    width: 53%;
    height: auto !important;
  }

  .product-hero-image-position-old {
    display: none;
  }
}

.product-hero .hero-waves {
  display: block;
  width: 100%;
  height: 60px;
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 3;
}

.product-hero .wave1 use {
  animation: move-forever1 10s linear infinite;
  animation-delay: -2s;
  fill: #fdbc31;
  opacity: 0.6;
}

.product-hero .wave2 use {
  animation: move-forever2 8s linear infinite;
  animation-delay: -2s;
  fill: #6fbf59;
  opacity: 0.4;
}

.product-hero .wave3 use {
  animation: move-forever3 6s linear infinite;
  animation-delay: -2s;
  fill: #498a7e;
}

@keyframes move-forever1 {
  0% {
    transform: translate(85px, 0%);
  }

  100% {
    transform: translate(-90px, 0%);
  }
}

@keyframes move-forever2 {
  0% {
    transform: translate(-90px, 0%);
  }

  100% {
    transform: translate(85px, 0%);
  }
}

@keyframes move-forever3 {
  0% {
    transform: translate(-90px, 0%);
  }

  100% {
    transform: translate(85px, 0%);
  }
}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(-10px);
  }
}

/*--------------------------------------------------------------
# Product Features 2 Section
--------------------------------------------------------------*/
.product-features-2 .feature-item .feature-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
}

.product-features-2 .feature-item .feature-icon i {
  font-size: 24px;
  color: var(--accent-color);
}

.product-features-2 .feature-item .feature-content h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}

.product-features-2 .feature-item .feature-content p {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  font-size: 15px;
  margin-bottom: 0;
}

.product-features-2 .phone-mockup {
  position: relative;
  padding: 30px 0;
}

.product-features-2 .phone-mockup img {
  max-width: 300px;
  height: auto;
  filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.1));
}

@media (max-width: 991.98px) {
  .product-features-2 .feature-item {
    text-align: center !important;
    margin-bottom: 2rem;
  }

  .product-features-2 .feature-item .d-flex {
    flex-direction: column;
    text-align: center;
    justify-content: center !important;
  }

  .product-features-2 .phone-mockup {
    margin: 3rem 0;
  }
}

.product-features-3 i {
  background-color: var(--accent-color);
  padding: 10px;
  border-radius: 50%;
  color: white;
  display: inline-block;
  font-size: 2rem;
  border: 3px solid;
}

/*--------------------------------------------------------------
# Product About Section
--------------------------------------------------------------*/
.product-about .about-meta {
  color: var(--accent-color);
  font-weight: 600;
  margin-bottom: 1rem;
  display: inline-block;
}

.product-about .about-title {
  font-size: 1.75rem;
  margin-bottom: 1rem;
  line-height: 1.2;
  font-weight: 700;
}

@media (max-width: 992px) {
  .product-about .about-title {
    font-size: 2rem;
  }
}

.product-about .about-description {
  margin-bottom: 2rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.product-about .feature-list-wrapper {
  margin-bottom: 2rem;
}

.product-about .feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.product-about .feature-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 1rem;
}

.product-about .feature-list li i {
  color: var(--accent-color);
  font-size: 1.25rem;
}

.product-about .profile .profile-image {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.product-about .profile .profile-name {
  font-size: 1.125rem;
  margin: 0;
}

.product-about .profile .profile-position {
  color: var(--accent-color);
  margin: 0;
  font-size: 0.875rem;
}

.product-about .contact-info {
  padding: 1rem 1.5rem;
  background-color: var(--surface-color);
  border-radius: 0.5rem;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.06);
}

.product-about .contact-info i {
  color: var(--accent-color);
  font-size: 1.5rem;
}

.product-about .contact-info .contact-label {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 0.875rem;
  margin: 0;
}

.product-about .contact-info .contact-number {
  font-weight: 600;
  margin: 0;
}

.product-about .image-wrapper {
  position: relative;
}

@media (max-width: 992px) {
  .product-about .image-wrapper {
    padding-left: 0;
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }
}

@media (max-width: 992px) {
  .product-about .image-wrapper .images {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
}

@media (max-width: 992px) {
  .product-about .image-wrapper .main-image {
    margin-left: 0;
  }
}

.product-about .image-wrapper .small-image {
  position: absolute;
  top: 20%;
  left: -10%;
  width: 45%;
  border: 8px solid var(--surface-color);
}

@media (max-width: 992px) {
  .product-about .image-wrapper .small-image {
    position: static;
    width: 100%;
    margin: 0 auto;
    border: 0;
  }
}

.product-about .image-wrapper .experience-badge {
  position: absolute;
  bottom: 5%;
  right: 5%;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 1.5rem;
  border-radius: 0.5rem;
  text-align: center;
  min-width: 200px;
  animation: experience-float 3s ease-in-out infinite;
}

@media (max-width: 992px) {
  .product-about .image-wrapper .experience-badge {
    position: static;
    width: fit-content;
    margin: 0 auto;
  }
}

.product-about .image-wrapper .experience-badge h3 {
  color: var(--contrast-color);
  font-size: 2.5rem;
  margin: 0;
  line-height: 0.5;
}

.product-about .image-wrapper .experience-badge h3 span {
  font-size: 1rem;
  display: inline-block;
  margin-left: 0.25rem;
}

.product-about .image-wrapper .experience-badge p {
  margin: 0.5rem 0 0;
  font-size: 0.875rem;
}

.product-about .about-images img {
  border-radius: 10px;
}

@keyframes experience-float {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }

  100% {
    transform: translateY(0);
  }
}

/*--------------------------------------------------------------
# Technial Features Section
--------------------------------------------------------------*/
.technical-features .nav-tabs {
  border: 0;
  background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  padding: 6px;
  width: auto;
}

.technical-features .nav-item {
  margin: 0;
  padding: 0 5px 0 0;
}

.technical-features .nav-item:last-child {
  padding-right: 0;
}

.technical-features .nav-link {
  background-color: none;
  color: var(--heading-color);
  padding: 10px 30px;
  transition: 0.3s;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  height: 100%;
  border: 0;
  margin: 0;
}

#specifications-tab .specification-item {
  background-color: var(--surface-color);
  box-shadow: 0px 5px 90px 0px rgba(0, 0, 0, 0.1);
  padding: 25px 25px;
  transition: all ease-in-out 0.4s;
  height: 100%;
  border-radius: 10px;
}

#specifications-tab .specification-item h4 {
  font-weight: 500;
  margin-bottom: 15px;
  font-size: 18px;
}

#specifications-tab .specification-item h4 a {
  color: var(--heading-color);
  transition: ease-in-out 0.3s;
}

#specifications-tab .specification-item p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

#specifications-tab .specification-item:hover {
  transform: translateY(-10px);
}

#specifications-tab .specification-item:hover h4 a {
  color: var(--accent-color);
}

@media (max-width: 468px) {
  .technical-features .nav-link {
    padding: 8px 20px;
  }
}

.technical-features .nav-link i {
  padding-right: 15px;
  font-size: 48px;
}

.technical-features .nav-link h4 {
  font-size: 14px;
  font-weight: 500;
  margin: 0;
}

.technical-features .nav-link:hover {
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.technical-features .nav-link:hover h4 {
  color: var(--accent-color);
}

.technical-features .nav-link.active {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
}

.technical-features .nav-link.active h4 {
  color: var(--contrast-color);
}

.technical-features .tab-content {
  margin-top: 30px;
}

.technical-features .tab-pane h3 {
  color: var(--heading-color);
  font-weight: 700;
  font-size: 32px;
  position: relative;
  margin-bottom: 20px;
  padding-bottom: 20px;
}

.technical-features .tab-pane h3:after {
  content: "";
  position: absolute;
  display: block;
  width: 60px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  bottom: 0;
}

.technical-features .tab-pane ul {
  list-style: none;
  padding: 0;
}

.technical-features .tab-pane ul li {
  padding-top: 10px;
}

.technical-features .tab-pane ul i {
  font-size: 20px;
  padding-right: 4px;
  color: var(--accent-color);
}

.technical-features .tab-pane p:last-child {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Specifications Section
--------------------------------------------------------------*/
.specifications .specifications-item {
  background-color: var(--surface-color);
  padding: 40px;
  box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
  height: 100%;
}

.specifications .specifications-item .icon {
  width: 48px;
  height: 48px;
  position: relative;
  margin-bottom: 50px;
}

.specifications .specifications-item .icon i {
  color: color-mix(in srgb, var(--heading-color), transparent 30%);
  font-size: 56px;
  transition: ease-in-out 0.3s;
  z-index: 2;
  position: relative;
}

.specifications .specifications-item .icon:before {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  background: color-mix(in srgb, var(--heading-color), transparent 95%);
  border-radius: 50px;
  z-index: 1;
  top: 10px;
  /* right        : -20px; */
  transition: 0.3s;
}

.specifications .specifications-item h3 {
  color: color-mix(in srgb, var(--heading-color), transparent 20%);
  font-weight: 700;
  margin: 0 0 20px 0;
  padding-bottom: 8px;
  font-size: 22px;
  position: relative;
  display: inline-block;
  border-bottom: 4px solid
    color-mix(in srgb, var(--heading-color), transparent 90%);
  transition: 0.3s;
}

.specifications .specifications-item p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.specifications .specifications-item .readmore {
  margin-top: 15px;
  display: inline-block;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

/* .specifications .specifications-item:hover .icon i {
  color: var(--heading-color);
}

.specifications .specifications-item:hover .icon:before {
  background: color-mix(in srgb, var(--accent-color), transparent 50%);
} */

.specifications .specifications-item:hover h3 {
  border-color: color-mix(in srgb, var(--accent-color), transparent 10%);
  color: var(--heading-color);
}

.specifications .specifications-item:hover .readmore {
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Specifications Section
--------------------------------------------------------------*/
.specifications-3 .specifications-image {
  position: relative;
  min-height: 400px;
}

.specifications-3 .specifications-image img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.specifications-3 h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
}

.specifications-3 .icon-box {
  margin-top: 30px;
}

.specifications-3 .icon-box i {
  color: var(--accent-color);
  margin-right: 15px;
  font-size: 24px;
  line-height: 1.2;
}

.specifications-3 .icon-box h4 {
  font-weight: 600;
  margin-bottom: 10px;
  font-size: 18px;
}

.specifications-3 .icon-box p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Product - Range and Applications Section
--------------------------------------------------------------*/
.applications {
  padding-top: 100px;
}

.applications .content h4 {
  font-size: 15px;
  font-weight: 500;
  line-height: 19px;
  padding: 10px 20px;
  background: color-mix(in srgb, var(--accent-color), transparent 95%);
  color: var(--accent-color);
  border-radius: 7px;
  display: inline-block;
}

.applications .content h3 {
  font-size: 20px;
  font-weight: 700;
}

.applications .content p:last-child {
  margin-bottom: 0;
}

.applications .content .read-more {
  background: var(--accent-color);
  color: var(--contrast-color);
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  padding: 12px 24px;
  border-radius: 5px;
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.applications .content .read-more i {
  font-size: 18px;
  margin-left: 5px;
  line-height: 0;
  transition: 0.3s;
}

.applications .content .read-more:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
  padding-right: 19px;
}

.applications .content .read-more:hover i {
  margin-left: 10px;
}

.applications .icon-box {
  background-color: var(--surface-color);
  padding: 25px 25px;
  box-shadow: 0px 10px 50px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  transition: all 0.3s ease-out 0s;
}

.applications .icon-box i {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 20px;
  line-height: 0;
  transition: all 0.4s ease-out 0s;
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  color: var(--accent-color);
}

.applications .icon-box h3 {
  margin-bottom: 10px;
  font-size: 20px;
  font-weight: 700;
}

.applications .icon-box p {
  font-size: 15px;
  margin-bottom: 0;
}

.applications .icon-box:hover i {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.applications .icon-boxes .col-md-6:nth-child(2) .icon-box,
.applications .icon-boxes .col-md-6:nth-child(4) .icon-box {
  margin-top: -40px;
}

@media (max-width: 768px) {
  .applications .icon-boxes .col-md-6:nth-child(2) .icon-box,
  .applications .icon-boxes .col-md-6:nth-child(4) .icon-box {
    margin-top: 0;
  }
}

/*--------------------------------------------------------------
# Product Images Section
--------------------------------------------------------------*/
.product-images-2 {
  overflow: visible;
  margin-bottom: 200px;
  background-color: #498a7e;
}

.product-images-2 h2,
.product-images-2 span {
  color: whitesmoke;
}

.product-images-2 .images-carousel-wrap {
  position: relative;
  margin-bottom: -200px;
}

.product-images-2 .swiper-wrapper {
  height: auto;
}

.product-images-2 .image-item {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--accent-color);
}

.product-images-2 .image-item:before {
  content: "";
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  position: absolute;
  opacity: 0;
  visibility: hidden;
  z-index: 1;
  transition: 0.3s all ease;
}

.product-images-2 .image-item img {
  transition: 0.5s all ease;
  transform: scale(1);
}

.product-images-2 .image-item .image-item-contents {
  z-index: 9;
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  transition: 0.3s all ease;
  transform: translateY(100%);
  opacity: 0;
  visibility: hidden;
}

.product-images-2 .image-item .image-item-contents .image-item-category {
  color: var(--accent-color);
  text-transform: uppercase;
}

.product-images-2 .image-item .image-item-contents .image-item-title {
  color: var(--nav-color);
  margin-bottom: 0;
}

.product-images-2 .image-item:hover:before {
  opacity: 1;
  visibility: visible;
}

.product-images-2 .image-item:hover .image-item-contents {
  transform: translateY(0%);
  opacity: 1;
  visibility: visible;
}

.product-images-2 .image-item:hover img {
  transform: scale(1.2);
}

.product-images-2 .navigation-prev,
.product-images-2 .navigation-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 9;
  width: 46px;
  height: 46px;
  background: var(--accent-color);
  background-color: none;
  border: none;
  transition: 0.3s all ease;
}

.product-images-2 .navigation-prev i,
.product-images-2 .navigation-next i {
  font-size: 2rem;
}

.product-images-2 .navigation-prev:hover,
.product-images-2 .navigation-next:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.product-images-2 .navigation-prev {
  left: 10px;
}

.product-images-2 .navigation-next {
  right: 10px;
}

.product-images-2 .swiper {
  padding-bottom: 50px;
}

.product-images-2 .swiper-pagination {
  bottom: 0px;
}

.product-images-2 .swiper-pagination .swiper-pagination-bullet {
  border-radius: 0;
  width: 20px;
  height: 4px;
  background-color: color-mix(
    in srgb,
    var(--accent-color),
    transparent 80%
  ) !important;
  opacity: 1;
}

.product-images-2 .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color) !important;
}

/*--------------------------------------------------------------
# Colored Line
--------------------------------------------------------------*/

.colored-line {
  display: flex;
  width: 100%;
  position: relative;
  height: 10px;
  /* Initially not sticky */
  transition: top 0.3s ease;
}

.colored-line.sticky {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
}

.color-segment {
  flex: 1;
  /* Each segment takes equal width */
  height: 100%;
  /* Ensures each segment fills the full height of the parent */
}

/* kinetic style home section */
.title-section {
  text-align: center;
  margin-bottom: 70px;
}
.title-section span {
  display: inline-block;
  color: #999999;
  font-size: 20px;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  margin: 0 0 10px;
}
.title-section h1 {
  color: #333333;
  font-size: 50px;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  margin: 0 0 20px;
}
.title-section p {
  color: #666;
  font-size: 20px;
  line-height: 30px;
  margin: 0;
}
.title-section.white span {
  color: #fff;
}
.title-section.white h1 {
  color: #ffffff;
}
.title-section.white p {
  color: #ccc;
}
#home-section .tp-caption.small_text {
  position: absolute;
  color: #fff;
  text-shadow: none;
  font-weight: 400;
  font-size: 24px;
  line-height: 20px;
  font-family: "Source Sans Pro", sans-serif;
  margin: 0px;
  border-width: 0px;
  border-style: none;
  white-space: nowrap;
  text-align: center;
}
#home-section .tp-caption.small_text a.button-one {
  padding: 14px 28px;
  letter-spacing: 0 !important;
}
#home-section .tp-caption.small_text.black-col {
  color: #777777;
}
#home-section .tp-caption.finewide_medium_white {
  color: #fff;
  text-shadow: none;
  font-size: 60px;
  line-height: 70px;
  font-weight: 400;
  font-family: "Source Sans Pro", sans-serif;
  background-color: none;
  text-decoration: none;
  text-transform: initial;
  border-width: 0px;
  border-color: transparent;
  border-style: none;
  letter-spacing: -0.5px;
  text-align: left;
}
#home-section .tp-caption.finewide_medium_white span {
  color: #00b9ff !important;
}
#home-section .tp-caption.finewide_medium_white.black-col {
  color: #333333;
}
#home-section .tp-caption.mediumlarge_light_white_center {
  font-size: 36px;
  line-height: 46px;
  font-weight: 400;
  font-family: "Source Sans Pro", sans-serif;
}
#home-section .tp-bannertimer {
  display: none !important;
}
#home-section .slotholder:after {
  background: rgba(34, 34, 34, 0);
}
#home-section .tp-bullets.simplebullets.round .bullet {
  background: transparent;
  border: 1px solid #fff;
  opacity: 1;
  width: 9px;
  height: 9px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
}
#home-section .tp-bullets.simplebullets.round .bullet:hover,
#home-section .tp-bullets.simplebullets.round .bullet.selected {
  background: #fff;
  border-color: transparent;
  opacity: 1;
}
#home-section a.txt-btn {
  color: #ffffff;
  font-size: 18px;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 600;
  margin-left: 20px;
}
#home-section a.txt-btn i {
  display: inline-block;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  padding-left: 4px;
  border: 1px dashed #f1f1f1;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
  margin-right: 16px;
}
#home-section a.txt-btn:hover {
  color: #00b9ff;
}
section#home-section {
  z-index: 2;
  position: relative;
}
section#home-section .top-block {
  text-align: center;
  padding: 165px 0 0;
  background: #333333 url("../upload/slide3.jpg") center center fixed;
  background-size: cover;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  position: relative;
}
section#home-section .top-block .container {
  position: relative;
  z-index: 2;
}
section#home-section .top-block h1 {
  color: #fff;
  font-size: 60px;
  margin-bottom: 15px;
}
section#home-section .top-block h2 {
  color: #fff;
  margin-bottom: 30px !important;
}
section#home-section .top-block a {
  margin-bottom: 30px;
}
section#home-section .top-block p {
  margin-bottom: 20px;
  color: #fff;
}
section#home-section .top-block p a {
  color: #00b9ff;
  text-decoration: underline;
}
section#home-section .top-block img {
  max-width: 100%;
  height: auto;
  z-index: 2;
  position: relative;
}
section#home-section .top-block:after {
  content: "";
  position: absolute;
  bottom: -80px;
  left: 0;
  width: 100%;
  height: 300px;
  background: #fff;
  -ms-transform: matrix(1, -0.05, 0, 1, 0, 0);
  -webkit-transform: matrix(1, -0.05, 0, 1, 0, 0);
  transform: matrix(1, -0.05, 0, 1, 0, 0);
}
section#home-section div.top-block2 {
  padding: 210px 0 0;
  position: relative;
}
section#home-section div.top-block2 p {
  margin-bottom: 20px;
}
section#home-section div.top-block2 h2 {
  margin-bottom: 24px;
  color: #999999;
}
section#home-section div.top-block2 a.button-one {
  margin-right: 20px;
  padding-left: 36px;
  padding-right: 36px;
}
section#home-section div.top-block2 a.btn-txt {
  color: #6633cc;
  font-size: 18px;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 600;
}
section#home-section div.top-block2 a.btn-txt i {
  display: inline-block;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  padding-left: 4px;
  border: 1px dashed #dcd7e4;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
  margin-right: 16px;
}
section#home-section div.top-block2 .clients-box {
  padding-top: 100px;
}
section#home-section div.top-block2 .clients-box span {
  display: inline-block;
  font-size: 18px;
  color: #888888;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  line-height: 24px;
  margin: 0 0 10px;
  font-size: 16px;
  margin-bottom: 20px;
}
section#home-section div.top-block2 .clients-box ul.client-list {
  margin: 0;
  padding: 0;
  overflow: hidden;
  position: relative;
  z-index: 2;
}
section#home-section div.top-block2 .clients-box ul.client-list li {
  display: inline-block;
  padding-right: 20px;
}
section#home-section div.top-block2 .clients-box ul.client-list li img {
  max-height: 16px;
  width: auto;
}
section#home-section
  div.top-block2
  .clients-box
  ul.client-list
  li:first-child
  img {
  max-height: 20px;
}
section#home-section div.top-block2 .top-block-image {
  margin-top: -100px;
}
section#home-section div.top-block2 .image-rounded {
  position: absolute;
  width: 70%;
  height: 800px;
  right: -15%;
  top: -300px;
  background: url("../upload/k1.jpg") right bottom;
  background-size: cover;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  -webkit-border-top-left-radius: 400px;
  -moz-border-top-left-radius: 400px;
  -o-border-top-left-radius: 400px;
  border-top-left-radius: 400px;
  -webkit-border-bottom-left-radius: 400px;
  -moz-border-bottom-left-radius: 400px;
  -o-border-bottom-left-radius: 400px;
  border-bottom-left-radius: 400px;
  -webkit-transform: rotate(-25deg);
  -moz-transform: rotate(-25deg);
  -ms-transform: rotate(-25deg);
  -o-transform: rotate(-25deg);
  transform: rotate(-25deg);
  z-index: -1;
}
section#home-section div.top-block2 .image-rounded:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: -30px;
  left: -50px;
  border: 1px solid #ebe9ee;
  -webkit-border-top-left-radius: 400px;
  -moz-border-top-left-radius: 400px;
  -o-border-top-left-radius: 400px;
  border-top-left-radius: 400px;
  -webkit-border-bottom-left-radius: 400px;
  -moz-border-bottom-left-radius: 400px;
  -o-border-bottom-left-radius: 400px;
  border-bottom-left-radius: 400px;
}
section.client-list-section {
  margin-top: -180px;
  text-align: center;
  padding-bottom: 50px;
  position: relative;
  z-index: 2;
}
section.client-list-section p {
  font-size: 16px;
  color: #fff;
  margin-bottom: 40px;
}
section.client-list-section .client-list-box {
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
section.client-list-section ul.client-list {
  margin: 0;
  padding: 0;
  overflow: hidden;
  text-align: center;
}
section.client-list-section ul.client-list li {
  float: left;
  display: inline-block;
  width: 20%;
  padding: 0 10px;
}
section.client-list-section ul.client-list li img {
  max-width: 100%;
  height: auto;
}

/*-------------------------------------------------*/
/* =  Video section
/*-------------------------------------------------*/
section#video-section {
  background: url("../upload/ban2.jpg") center center no-repeat;
  background-size: cover;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  padding: 100px 0;
}
section#video-section .video-app-box {
  max-width: 770px;
  margin: 0 auto;
}
section#video-section .video-app-box iframe {
  width: 100%;
  height: 420px;
  border: none;
}
section#video-section.white-background {
  background: #fff;
  padding: 0px;
}
section#video-section.white-background .video-app-box {
  margin-bottom: -115px;
  position: relative;
  z-index: 2;
}
section#video-section.white-background2 {
  background: #fff;
  padding: 100px 0;
  position: relative;
}
section#video-section.white-background2 .video-app-box {
  position: relative;
  z-index: 2;
}
section#video-section.white-background2 .border-rounded {
  position: absolute;
  width: 58%;
  height: 650px;
  left: -20%;
  top: -100px;
  border: 1px solid #eceaef;
  -webkit-border-top-right-radius: 325px;
  -moz-border-top-right-radius: 325px;
  -o-border-top-right-radius: 325px;
  border-top-right-radius: 325px;
  -webkit-border-bottom-right-radius: 325px;
  -moz-border-bottom-right-radius: 325px;
  -o-border-bottom-right-radius: 325px;
  border-bottom-right-radius: 325px;
  -webkit-transform: rotate(-25deg);
  -moz-transform: rotate(-25deg);
  -ms-transform: rotate(-25deg);
  -o-transform: rotate(-25deg);
  transform: rotate(-25deg);
}

/*
* 8. contact styles
*/
.contact-one {
  padding-top: 120px;
  padding-bottom: 120px;
}

.contact-one .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.contact-one__form {
  padding-left: 15px;
  padding-right: 15px;
  max-width: 740px;
  width: 100%;
  margin-left: -10px;
  margin-right: -10px;
}

.contact-one__form [class*="col-"] {
  padding-left: 10px;
  padding-right: 10px;
}

.contact-one__form input,
.contact-one__form textarea {
  border: none;
  outline: none;
  display: block;
  background-color: #f2f2f2;
  font-size: 16px;
  color: #616161;
  width: 100%;
  height: 79px;
  margin-bottom: 20px;
  padding-left: 30px;
}

.contact-one__form input::-webkit-input-placeholder,
.contact-one__form textarea::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #616161;
}

.contact-one__form input::-moz-placeholder,
.contact-one__form textarea::-moz-placeholder {
  /* Firefox 19+ */
  color: #616161;
}

.contact-one__form input:-ms-input-placeholder,
.contact-one__form textarea:-ms-input-placeholder {
  /* IE 10+ */
  color: #616161;
}

.contact-one__form input:-moz-placeholder,
.contact-one__form textarea:-moz-placeholder {
  /* Firefox 18- */
  color: #616161;
}

.contact-one__form textarea {
  padding-top: 10px;
  height: 189px;
}

.map-one {
  padding-bottom: 60px;
  padding-top: 515px;
  position: relative;
}

.map-one .google-map__contact {
  position: absolute;
  width: 100%;
  height: 100%;
  border: none;
  display: block;
  top: 0;
  left: 0;
}

.map-one__single {
  padding: 42px 50px;
  background-color: #ffffff;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.map-one__single:hover {
  background-color: #ed2c41;
}

.map-one__single:hover .map-one__title,
.map-one__single:hover .map-one__list li i,
.map-one__single:hover .map-one__list li {
  color: #fff;
}

.map-one__title {
  margin: 0;
  font-weight: bold;
  color: #1b181a;
  font-size: 24px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.map-one__list {
  margin: 0;
  margin-top: 30px;
}

.map-one__list li {
  position: relative;
  padding-left: 25px;
  font-weight: bold;
  font-size: 16px;
  line-height: 30px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.map-one__list li + li {
  margin-top: 7px;
}

.map-one__list li i {
  font-size: 18px;
  color: #ed2c41;
  position: absolute;
  top: 7px;
  left: 0;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.map-one__list li i.fa-envelope {
  font-size: 15px;
}

.contact-info-one {
  padding-top: 120px;
  padding-bottom: 90px;
}

.contact-info-one__single {
  background-color: #f2f2f2;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding-top: 47.5px;
  padding-bottom: 47.5px;
  margin-bottom: 30px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.contact-info-one__single i {
  width: 59px;
  height: 59px;
  color: #fff;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  font-size: 18px;
  background-color: #ff9409;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.contact-info-one__single i.fa-envelope {
  font-size: 15px;
}

.contact-info-one__single:hover {
  background-color: #ff9409;
}

.contact-info-one__single:hover i {
  background-color: #fff;
  color: #ff9409;
}

.contact-info-one__single:hover .contact-info-one__text {
  color: #fff;
}

.contact-info-one__text {
  font-size: 16px;
  line-height: 30px;
  color: #616161;
  font-weight: bold;
  margin: 0;
  margin-top: 35px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.contact-one__home-three {
  padding-top: 0;
  padding-bottom: 0;
}

.contact-one__home-three .block-title {
  margin-top: 120px;
}

.contact-one__home-three .contact-info-one__single {
  text-align: left;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  background-color: transparent;
  padding: 0;
  margin: 0;
}

.contact-one__home-three .contact-info-one__single + .contact-info-one__single {
  margin-top: 20px;
}

.contact-one__home-three .contact-info-one__text {
  margin-top: 0;
}

.contact-one__home-three .contact-info-one__single i {
  background-color: #ed2c41 !important;
}

.contact-one__home-three .contact-info-one__text {
  color: #616161 !important;
  padding-left: 20px;
  line-height: 30px;
}

.contact-one__home-three .contact-one__form input,
.contact-one__home-three .contact-one__form textarea {
  background-color: #fff;
}

.contact-one__home-three .contact-one__form {
  position: relative;
  padding-left: 120px;
  padding-top: 120px;
  padding-bottom: 120px;
}

.contact-one__home-three .contact-one__form::before {
  content: "";
  position: absolute;
  top: 0;
  left: 15px;
  width: 1000000px;
  height: 100%;
  background-color: #f2f2f2;
}
