/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=Antic+Didone&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');

:root {
  --default-font: "Roboto", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Nunito", sans-serif;
  --nav-font: "Poppins", sans-serif;
}

@font-face {
  font-family: 'Mogent', sans-serif;
  src: url('../fonts/mogent/Mogent.otf') format('otf');
  font-weight: normal;
  font-style: normal;
}

.raleway-Light {
  font-family: "Raleway", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
}

.raleway-Regular {
  font-family: "Raleway", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

.raleway-Medium {
  font-family: "Raleway", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
}

.raleway-Semi-Bold {
  font-family: "Raleway", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
}

.antic-didone-regular {
  font-family: "Antic Didone", serif;
  font-weight: 400;
  font-style: normal;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root {
  --background-color: #FFFFFF;
  /* Background color for the entire website, including individual sections */
  --default-color: #444444;
  /* Default color used for the majority of the text content across the entire website */
  --heading-color: #0D1513;
  /* Color for headings, subheadings and title throughout the website */
  --accent-color: #011C13;
  /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff;
  /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff;
  /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #ffffff;
  /* The default color of the main navmenu links */
  --nav-hover-color: #4154f1;
  /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff;
  /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff;
  /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #212529;
  /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #4154f1;
  /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
  --nav-dropdown-colorone: #ffffff;
  --nav-dropdown-hover-colorone: #c2c2ca;
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.antic-didone-regular {
  font-family: "Antic Didone", serif;
  font-weight: 400;
  font-style: normal;
}


.light-background {
  --background-color: #f9f9f9;
  --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,
h5,
h6 {

  color: #060606;
  font-family: 'lora';
  font-weight: bold;
}

h3,
h4 {
  font-family: 'lora';
  color: #060606;

}

.para {
  font-family: "Montserrat";
  font-size: 17px;
  color: #565656;
}

.container,
.container-lg,
.container-md,
.container-sm,
.container-xl {
  max-width: 1224px;
}

/* @media (max-width: 640px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl {
    width: 100%;
  }
} */
/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 20px 0 5px 0;
  transition: all 0.5s;
  z-index: 997;
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 91.59px;
  max-width: 129px;
  margin-right: 8px;
}

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
}

.header .btn-getstarted,
.header .btn-getstarted:focus {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-size: 15px;
  padding: 8px 25px;
  margin: 0 0 0 30px;
  border-radius: 4px;
  transition: 0.3s;
  font-weight: 500;
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
}

@media (max-width: 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: #131009;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1200px) {

  .navmenu {
    margin-bottom: 41px;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
    padding: 0px;

  }

  .navmenu a,
  .navmenu a:focus {
    color: #FFFFFF;
    padding: 12px 24px;
    font-size: 16px;
    font-family: "Raleway", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    line-height: 24px;
    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 {
    border-bottom: 2px solid rgb(255, 255, 255);
  } */

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

/* Navmenu - Mobile */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mbile-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-colorone);
    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-colorone);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}

/* Listing Dropdown - Desktop */
@media (min-width: 1200px) {
  .navmenu .listing-dropdown {
    position: static;
  }

  .navmenu .listing-dropdown ul {
    margin: 0;
    padding: 10px;
    background: var(--nav-dropdown-background-color);
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
    position: absolute;
    top: 130%;
    left: 0;
    right: 0;
    visibility: hidden;
    opacity: 0;
    display: flex;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
  }

  .navmenu .listing-dropdown ul li {
    flex: 1;
  }

  .navmenu .listing-dropdown ul li a,
  .navmenu .listing-dropdown ul li:hover>a {
    padding: 10px 20px;
    font-size: 15px;
    color: var(--nav-dropdown-color);
    background-color: var(--nav-dropdown-background-color);
  }

  .navmenu .listing-dropdown ul li a:hover,
  .navmenu .listing-dropdown ul li .active,
  .navmenu .listing-dropdown ul li .active:hover {
    color: var(--nav-dropdown-hover-color);
    background-color: var(--nav-dropdown-background-color);
  }

  .navmenu .listing-dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }
}

/* Listing Dropdown - Mobile */
@media (max-width: 1199px) {
  .navmenu .listing-dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }

  .navmenu .listing-dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .listing-dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  font-size: 14px;
  position: relative;
}

.footer .footer-newsletter {
  background-color: color-mix(in srgb, var(--accent-color), transparent 97%);
  border-top: 1px solid color-mix(in srgb, var(--accent-color), transparent 85%);
  border-bottom: 1px solid color-mix(in srgb, var(--accent-color), transparent 85%);
  padding: 50px 0;
}

.footer .footer-newsletter h4 {
  font-size: 24px;
}

.footer .footer-newsletter .newsletter-form {
  margin-top: 30px;
  margin-bottom: 15px;
  padding: 6px 8px;
  position: relative;
  background-color: color-mix(in srgb, var(--background-color), transparent 50%);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  box-shadow: 0px 2px 25px rgba(0, 0, 0, 0.1);
  display: flex;
  transition: 0.3s;
  border-radius: 4px;
}

.footer .footer-newsletter .newsletter-form:focus-within {
  border-color: var(--accent-color);
}

.footer .footer-newsletter .newsletter-form input[type=email] {
  border: 0;
  padding: 4px;
  width: 100%;
  background-color: color-mix(in srgb, var(--background-color), transparent 50%);
  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 -8px -7px 0;
  background: var(--accent-color);
  color: var(--contrast-color);
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
}



.footer .footer-top {
  padding-top: 50px;
}

.footer .social-links {
  padding-top: 30px;
  padding-bottom: 30px;
  margin-left: 14px;
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35.14px;
  height: 35.14px;
  border-radius: 20px;
  background-color: #E55A66;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 85%);
  font-size: 16px;
  color: #FFFFFF;
  margin-right: 10px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: #E55A66;
  background-color: #131009;
}

.footer h4 {
  color: #131009;
  font-family: "Raleway", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 24px;
  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 {
  margin-right: 3px;
  font-size: 12px;
  line-height: 0;
  color: var(--accent-color);
}

.footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
  font-family: "Raleway", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
  font-size: 16px;
  line-height: 24px;
  color: #4C5452;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  display: inline-block;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1;
}

.footer .footer-links ul a p {
  display: inline-block;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1;
}

.footer .footer-links ul a:hover {
  color: var(--accent-color);
}

.footer .footer-about a {
  color: var(--heading-color);
  font-size: 24px;
  font-weight: 600;
  font-family: var(--heading-font);
}

.footer .footer-contact p {
  margin-bottom: 5px;
}

.footer .copyright {
  padding-top: 20px;
  padding-bottom: 20px;
  color: #FFFFFF;
  background-color: #131009;
}

.footer .copyright p {
  margin-bottom: 0;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  line-height: 24px;
  text-align: center;
}

.footer .credits {
  margin-top: 6px;
  font-size: 13px;
}

.footer-logo img {
  width: 157px;

}

.footer-bottom h1 {
  margin-top: 48px;
  font-size: 138px;
  line-height: 138px;
  font-family: "Antic Didone", serif;
  font-weight: 400;
  font-style: normal;
  text-align: center;
  color: #131009;
}

.footer-bottom h3 {
  font-size: 56px;
  font-weight: 400;
  line-height: 108px;
  font-family: "Montserrat", sans-serif;
  text-align: center;
  letter-spacing: 10px;
  color: #131009;
}

@media (max-width: 786px) {
  .footer-links {
    text-align: center;
  }

  .footer .footer-links ul li {
    text-align: center;
    display: inline;
  }

  .footer-logo {
    justify-content: center;
    text-align: center;
  }

  .footer .footer-top {
    padding-top: 10px;
  }

  .footer .footer-bottom h1 {
    font-size: 65px;
    line-height: 80px;
  }

  .footer .footer-bottom h3 {
    font-size: 30px;
    line-height: 40px;
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: #131009;
  width: 40px;
  height: 40px;
  border-radius: 24px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  position: relative;
}

.page-title .heading {
  padding: 80px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.page-title .heading h1 {
  font-size: 38px;
  font-weight: 700;
}

.page-title nav {
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
  padding: 20px 0;
}

.page-title nav ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}

.page-title nav ol li+li {
  padding-left: 10px;
}

.page-title nav ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 0px 0;
  scroll-margin-top: 98px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 56px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 13px;
  letter-spacing: 1px;
  font-weight: 700;
  padding: 8px 20px;
  margin: 0;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  display: inline-block;
  text-transform: uppercase;
  border-radius: 50px;
  font-family: var(--default-font);
}

.section-title p {
  color: var(--heading-color);
  margin: 10px 0 0 0;
  font-size: 32px;
  font-weight: 700;
  font-family: var(--heading-font);
}

.section-title p .description-title {
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  max-width: 100%;
  min-height: 897px;
  position: relative;
  /* padding: 0px 0 60px 0; */
  display: flex;
  align-items: center;
  background: url(../img/hero-bg.png) center no-repeat;
  background-size: cover;
  /* border-radius: 0px 0px 50px 50px; */
  /* margin-bottom: 70px; */
}

/*hide a horizontal scroll bar*/
::-webkit-scrollbar {
  width: 0px;
}

/*track*/
::-webkit-scrollbar-track {
  background: transparent;
}

/*thumb*/
::-webkit-scrollbar-thumb {
  background: transparent;
}

/*hide a horizontal scroll bar*/

.hero h1 {
  margin: 0;
  font-size: 66px;
  font-family: "Antic Didone", serif;
  font-weight: 400;
  font-style: normal;
  margin-top: 33rem;
  color: #FFFFFF;
  text-align: center;
}

.hero p {
  font-size: 24px;
  line-height: 36px;
  font-family: "Raleway", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  color: #FFFFFF;
  letter-spacing: 7.44px;
  text-align: center;
  margin-bottom: 40px;
  margin-top: 12px;
}


.hero .btn-get-started {
  color: #0D0D0C;
  background-color: #FFFFFF;
  font-family: "Raleway", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px 6px 4px 24px;
  border-radius: 16px;
  transition: 0.5s;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}

.hero .btn-get-started span {
  border-radius: 24px;
  width: 41.77px;
  height: 40px;
  background-color: #0D0D0C;
  margin-left: 18px;
  padding-top: 9px;
  padding-left: 13px;
}

.hero .btn-get-started span i {
  color: #FFFFFF;

}

/* .hero .btn-get-started i {
  margin-left: 5px;
  font-size: 18px;
  transition: 0.3s;
  color: #161616;
  font-family: "Montserrat", sans-serif;
} */

.hero .btn-get-started:hover {
  color: var(--contrast-color);
  background: #E55A66;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}

.hero .btn-get-started:hover i {
  transform: translateX(5px);
}



.hero .animated {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

@media (max-width: 640px) {
  .hero h1 {
    font-size: 40px;
    line-height: 48px;
    margin-top: 30rem;
    text-align: left;
    margin-right: 30px;
  }

  .hero p {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 30px;
    letter-spacing: 2px;
    text-align: left;
  }

  .hero {
    background: url(../img/hero-bg-mob.png) no-repeat;
    background-size: cover;    
  }

  .hero p {
    margin: 15px 15px 15px 0;
  }

  .hero .btn-get-started {
    width: 65%;
  }

  /* .btn2-get-started {
    width: 40%;
  } */
  .hero .mob-btn {
    align-items: start;
  }
}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(-10px);
  }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
/* @media screen and (max-width: 600px) {
  .column {
    width: 100%;
  }
} */
@media screen and (max-width: 768px) {


  .column {
    width: 100%;
  }
}

.about {
  margin-top: 15px;
  margin-bottom: 10rem;
}

.about-title {
  font-family: "Raleway", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 12px;
  line-height: 16px;
  color: #575552;
  text-align: left;
  margin-top: 20px;
}

.about .column {
  float: left;
  width: 50%;

}

.purecounter {
  font-family: "Raleway", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 100px;
  line-height: 120px;
  letter-spacing: -4px;
  color: #E55A66;
  margin-bottom: 20px;
}

.about-content-l {
  margin-top: 74px;
  margin-bottom: 68px;
}

.about-content-r {
  margin-top: 58px;
  margin-bottom: 68px;
}

.about-content-l .countersign {
  font-family: "Raleway", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 100px;
  line-height: 120px;
  letter-spacing: -4px;
  color: #E55A66;
}

.about-left-para {
  font-family: "Raleway", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 28px;
  color: #575552;
  margin-top: 12px;
  margin-bottom: 0px;
}

.about-content-pt {
  margin-top: 40px;
  margin-bottom: 80px;
}

.clm-border {

  border-bottom: 1px solid #E2E2E2;

}

.right-border {
  border-right: 1px solid #E2E2E2;
  ;
}

.clm-border2 {

  border-top: 1px solid #D9D9D9;

}

.about .btn-get-started {
  color: #FFFFFF;
  background-color: #131009;
  font-family: "Raleway", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px 6px 4px 24px;
  border-radius: 16px;
  transition: 0.5s;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
  margin-top: 48px;
}

.about .btn-get-started span {
  border-radius: 24px;
  width: 41.77px;
  height: 40px;
  background-color: #FFFFFF;
  margin-left: 18px;
  padding-top: 9px;
  padding-left: 13px;
}

.about .btn-get-started span i {
  color: #131009;
}

.about .btn-get-started:hover {
  color: var(--contrast-color);
  background: #E55A66;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}

.about .btn-get-started:hover i {
  transform: translateX(5px);
}

/* Clear floats after the columns */
.about .row:after {
  content: "";
  display: table;
  clear: both;
}


.about .content {
  padding: 0px;

}

.about .content h3 {
  font-size: 18px;
  font-weight: 700;
  color: #565656;
  font-family: 'Montserrat';
  text-decoration: 2px underline;
  align-items: flex-start;
}

.about .about-content-r h2 {
  font-family: "Antic Didone", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 48px;
  line-height: 64px;
  color: #8A8A8A;
  margin-left: 82px;
}

.about .about-content-r h2 span {
  color: #131009;
}

.about-title-para {
  font-family: "Montserrat", serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #4C5452;
  padding-left: 20px;

}

.about .content p {
  margin: 15px 0 30px 0;

}

.about-one {
  width: 380px;
  height: 420px;
}

.about-two,
.about-three {
  width: 467px;
  height: 202px;
}

.about-content-img {
  text-align: right;
}

.about-text-content {
  width: 298px;
  height: 130px;
  border-radius: 12px;
  background-color: #011C13;
  padding-top: 25px;
  padding-left: 14px;
}

.about-section-content {
  margin-top: 60px;
}

.about-text-content h3 {
  font-family: "Montserrat", serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  color: #ECFDF3;
}

.about-text-content p {
  font-family: "Montserrat", serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
  color: #C2D4CA;
}

.about .content .btn-read-more {
  color: var(--contrast-color);
  background: var(--accent-color);
  line-height: 0;
  padding: 15px 40px;
  border-radius: 4px;
  transition: 0.5s;
  box-shadow: 0px 5px 25px rgba(0, 0, 0, 0.1);
}

.about .content .btn-read-more span {
  font-family: var(--default-font);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 1px;
}

.about .content .btn-read-more i {
  margin-left: 5px;
  font-size: 18px;
  transition: 0.3s;
}

.about .content .btn-read-more:hover i {
  transform: translateX(5px);
}

.countersign {
  color: var(--heading-color);
  font-size: 36px;
  display: block;
  font-weight: 600;
  font-family: Montserrat;
  padding-left: 4px;
}

@media screen and (max-width: 768px) {
  .about1 {

    background: url(../img/about-bg.png) no-repeat;
    background-position: calc(40% - -39%);
    background-size: cover;

  }

  .about .btn-get-started {
    width: 70%;
  }

  .column {
    width: 100%;
  }

  .about .mob-btn {
    align-items: center;
  }

  .about .content h2 {
    font-size: 42px;
    line-height: 48px;
  }

  .about-title-para {
    text-align: center;
    padding-left: 0px;
  }

  .abouts-cols .about-img {
    margin-bottom: 15px;
  }
  .about .about-content-r h2 {
    font-size: 38px;
    line-height: 50px;
    margin-left: 0px;
  }
}

/*--------------------------------------------------------------
# Products Section
--------------------------------------------------------------*/
.products {
  margin-top: 60px;
  margin-bottom: 60px;
}

.product-title-para {
  font-family: "Raleway", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 28px;
  color: #575552;
  margin-top: 20px;
  margin-right: 20px;
}

.products .products-title-content h2 {
  font-family: "Antic Didone", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 48px;
  line-height: 64px;
  color: #131009;
  padding-left: 20px;
}

.products .products-title-content h2 span {
  color: #8A8A8A;
}

.products-title-content {
  margin-top: 1.2rem;
}

.products-content {
  margin-top: 4.5rem;
  margin-bottom: 6rem;
}

.products-cols {
  border-radius: 16px;
  background-color: #E2E2E2;
  width: 390px;
  height: 490px;
}

.products-img {
  margin-top: 10px;
  width: 370px;
  height: 383px;
}

.products-cols p {
  font-family: "Raleway", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 24px;
  line-height: 36px;
  color: #131009;
  margin-bottom: 0px;
  margin-top: 1rem;
  margin-left: 0.5rem;
  text-align: left;
}



@media screen and (max-width: 768px) {
  .products .content h2 {
    font-size: 42px;
    line-height: 48px;
  }

  .products-cols p {
    font-size: 20px;
    line-height: 32px;
  }
  .products .products-title-content h2 {
    font-size: 38px;
    line-height: 50px;
  }
}


/*--------------------------------------------------------------
# Values Section
--------------------------------------------------------------*/
.values .card {
  background-color: var(--surface-color);
  color: var(--default-color);
  padding: 30px;
  box-shadow: 0px 0 10px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: 0.3s;
  height: 100%;
  border: 0;
}

.values .card img {
  padding: 30px 50px;
  transition: 0.5s;
  transform: scale(1.1);
}

.values .card h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 18px;
}

.values .card:hover {
  box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
}

.values .card:hover img {
  transform: scale(1);
}

/*--------------------------------------------------------------
# Stats Section
--------------------------------------------------------------*/
.stats .stats-item {
  background-color: var(--surface-color);
  padding: 0px 0px 30px;
}

.stats .stats-item i {
  color: var(--accent-color);
  font-size: 42px;
  line-height: 0;
  margin-right: 20px;
}

.stats .stats-item span {
  color: var(--heading-color);
  font-size: 36px;
  display: block;
  font-weight: 600;
  font-family: Montserrat;
}

.stats .stats-item p {
  padding: 0;
  margin: 0;
  font-family: var(--heading-font);
  font-size: 16px;
}

/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features .feature-box {
  padding: 24px 20px;
  box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
  height: 100%;
}

.features .feature-box h3 {
  font-size: 18px;
  font-weight: 700;
  margin: 0;
}

.features .feature-box i {
  background: color-mix(in srgb, var(--accent-color), transparent 92%);
  color: var(--accent-color);
  line-height: 0;
  padding: 4px;
  margin-right: 10px;
  font-size: 24px;
  border-radius: 3px;
  transition: 0.3s;
}

.features .feature-box:hover i {
  background: var(--accent-color);
  color: var(--contrast-color);
}

/*--------------------------------------------------------------
# Alt Features Section
--------------------------------------------------------------*/
.alt-features .icon-box {
  display: flex;
}

.alt-features .icon-box h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 10px 0;
}

.alt-features .icon-box i {
  font-size: 44px;
  line-height: 44px;
  color: var(--accent-color);
  margin-right: 15px;
}

.alt-features .icon-box p {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services {
  background-color: #131009;
}

.services-content-title {
  margin-bottom: 64px;
  margin-top: 120px;
}

.services-content-dn {
  margin-bottom: 120px;
  margin-top: 80px;
}

.service-border {
  padding-bottom: 60px;
}

.services .content h2 {
  font-family: "Antic Didone", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 48px;
  line-height: 64px;
  color: #FFFFFF;
  text-align: center;
}

.services .content h2 span {
  color: #818181;
}

.service-title-para {
  font-family: "Raleway", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 28px;
  color: #D7D7D7;
  padding-left: 20px;
  margin-top: 20px;
  text-align: center;
}

.service-content-btn {
  margin-top: 48px;
}

.services .btn-get-started {
  color: #0D0D0C;
  background-color: #FFFFFF;
  font-family: "Raleway", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px 6px 4px 24px;
  border-radius: 16px;
  transition: 0.5s;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}

.services .btn-get-started span {
  border-radius: 24px;
  width: 41.77px;
  height: 40px;
  background-color: #0D0D0C;
  margin-left: 18px;
  padding-top: 9px;
  padding-left: 13px;
}

.services .btn-get-started span i {
  color: #FFFFFF;
}

.services .btn-get-started:hover {
  color: var(--contrast-color);
  background: #E55A66;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}

.services .btn-get-started:hover i {
  transform: translateX(5px);
}

.services-content {
  width: 369px;
  height: 200px;
  border: 1px solid #404040;
  border-radius: 16px;
  margin-bottom: 24px;
}

.services .service-img {
  width: 370px;
  height: 425px;
}

/* .services .services-title {
  font-family: "Montserrat", serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 36px;
  color: #02794C;
} */



.services-content p {
  font-family: "Raleway", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 14px;
  line-height: 20px;
  color: #D7D7D7;
  letter-spacing: 1.4px;
  padding-right: 25px;
  margin-left: 20px;
}

.services-content h3 {
  font-family: "Raleway", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 20px;
  line-height: 28px;
  letter-spacing: 2px;
  color: #FFFFFF;
  margin-top: 34px;
  margin-left: 20px;
}

/* .services-content h3 span {
  font-family: "Montserrat", serif;
} */

@media (max-width: 768px) {
  .services-content {
    width: 300px;
    margin-top: 10px;
  }

  .services-content-dn {
    display: block !important;
  }
}

/*--------------------------------------------------------------
# Portfolio Section
--------------------------------------------------------------*/
.portfolio .portfolio-filters {
  padding: 0;
  margin: 0 auto 20px auto;
  list-style: none;
  text-align: center;
}

.portfolio .portfolio-filters li {
  cursor: pointer;
  display: inline-block;
  padding: 0;
  font-size: 18px;
  font-weight: 500;
  margin: 0 10px;
  line-height: 1;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
}

.portfolio .portfolio-filters li:hover,
.portfolio .portfolio-filters li.filter-active {
  color: var(--accent-color);
}

.portfolio .portfolio-filters li:first-child {
  margin-left: 0;
}

.portfolio .portfolio-filters li:last-child {
  margin-right: 0;
}

@media (max-width: 575px) {
  .portfolio .portfolio-filters li {
    font-size: 14px;
    margin: 0 5px;
  }
}

.portfolio .portfolio-content {
  position: relative;
  overflow: hidden;
}

.portfolio .portfolio-content img {
  transition: 0.3s;
}

.portfolio .portfolio-content .portfolio-info {
  opacity: 0;
  position: absolute;
  inset: 0;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  background: rgba(0, 0, 0, 0.6);
  padding: 15px;
}

.portfolio .portfolio-content .portfolio-info h4 {
  font-size: 14px;
  padding: 5px 10px;
  font-weight: 400;
  color: #ffffff;
  display: inline-block;
  background-color: var(--accent-color);
}

.portfolio .portfolio-content .portfolio-info p {
  position: absolute;
  bottom: 10px;
  text-align: center;
  display: inline-block;
  left: 0;
  right: 0;
  font-size: 16px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
}

.portfolio .portfolio-content .portfolio-info .preview-link,
.portfolio .portfolio-content .portfolio-info .details-link {
  position: absolute;
  left: calc(50% - 40px);
  font-size: 26px;
  top: calc(50% - 14px);
  color: #fff;
  transition: 0.3s;
  line-height: 1.2;
}

.portfolio .portfolio-content .portfolio-info .preview-link:hover,
.portfolio .portfolio-content .portfolio-info .details-link:hover {
  color: var(--accent-color);
}

.portfolio .portfolio-content .portfolio-info .details-link {
  left: 50%;
  font-size: 34px;
  line-height: 0;
}

.portfolio .portfolio-content:hover .portfolio-info {
  opacity: 1;
}

.portfolio .portfolio-content:hover img {
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials {
  margin-top: 120px;
  margin-bottom: 120px;
}

.testimonial-para {
  font-family: "Raleway", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  line-height: 28px;
  font-size: 16px;
  color: #575552;
  text-align: left;
  margin-right: 12rem;
}

.testi-text {
  text-align: left;
  font-family: "Antic Didone", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 48px;
  line-height: 64px;
  color: #8A8A8A;

}

.testimonials .content .testi-text span {
  color: #131009;
}

/* .testi-text .h3 {
  text-align: right;
  font-size: 80px;
  font-family: 'lora';
  color: #060606 !important;
} */
/* .testimonial1-para {
  font-family: "Montserrat", serif;
  font-weight: 300;
  line-height: 32px;
  font-size: 20px;
  color: #ECFDF3;
  text-align: left;
} */
.testimonial-content {
  margin-top: 80px;
}

.testimonial-cols-content {
  padding: 20px;
  border-radius: 25px;
  background-color: #F1F1F1;
}

.col-testi {
  margin-bottom: 28px;
}

.stars img {
  width: 40px;
  height: 40px;
}

.testimonial-cols h4 {
  font-family: "Raleway", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-size: 14px;
  line-height: 24px;
  color: #0D0D0D;
  margin-top: 5px;
}

.testimonial-cols-content h4 {
  font-family: "Raleway", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-size: 14px;
  line-height: 24px;
  color: #0D0D0D;
  margin-left: 12px;
  margin-top: 10px;
  margin-bottom: 0px;
}

.testimonial-cols-content p {
  font-family: "Raleway", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 14px;
  line-height: 20px;
  color: #6C6C6C;
  margin-top: 12px;
  padding-right: 10px;
}

.testimonials .testimonial-item {
  background-color: #021C14;
  box-shadow: 0px 0 20px rgba(0, 0, 0, 0.3);
  box-sizing: content-box;
  border-radius: 16px;
  padding: 30px;
  margin: 40px 20px;
  min-height: 208px;
  display: flex;
  flex-direction: column;
  text-align: center;
  transition: 0.3s;
}

.testimonials .testimonial-item .stars {
  margin-bottom: 15px;
  font-size: 40px;
  text-align: left;
}

.testimonials .testimonial-item .stars i {
  color: #000000;
  margin: 0 1px;
}

.testimonials .testimonial-item .testimonial-img {
  width: 60px;
  border-radius: 50%;
  border: 4px solid var(--background-color);
  margin: 0 auto;
  float: left;
  margin-right: 20px;

}

.testimonials .testimonial-item h3 {
  font-family: "Montserrat", serif;
  font-weight: 500;
  line-height: 20px;
  font-size: 14px;
  color: #A3B9AD;
  margin: 10px 0 0 0;
  text-align: left;
}

.testimonials .testimonial-item h4 {
  font-family: "Montserrat", serif;
  font-weight: 500;
  line-height: 20px;
  font-size: 14px;
  color: #A3B9AD;
  margin: 0;
  text-align: left;
}

.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);
}

.customer-para {
  font-family: Montserrat;
}

/* .testimonials .swiper-slide {
  opacity: 0.3;
} */

.ratings {
  text-align: right;
  margin-top: 20px;
}

.ratings i {
  color: #32D588;
}

@media (max-width: 768px) {
  .testi-text {
    font-size: 42px;
    line-height: 48px;
    margin-left: 0px;
  }

  .services-content {
    flex-direction: column;
    /* Stack items vertically */
    align-items: center;
    /* Center items */
  }

  .services-content .col-xl-3,
  .services-content .col-xl-4,
  .services-content .col-lg-5 {
    width: 100%;
    /* Make each column full-width */
    max-width: 100%;
    /* Ensure no width restriction */
    margin-bottom: 20px;
    /* Add spacing between items */
  }

  .testimonial-para {
    text-align: center;
    margin-top: 10px;
    margin-right: 0px;
  }
}

@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
--------------------------------------------------------------*/

.in_touch .intouch_content .intouch_intro {
  padding-bottom: 30px;
  margin-bottom: 0;
  position: relative;
}

.in_touch .intouch_content .intouch_intro:before {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  width: 100%;
  background-color: #FFFFFF;
}

.in_touch .intouch_content .intouch_allparts {
  margin-top: 40px;
}

.in_touch .intouch_content .intouch_allparts .intouch_single_part:not(:last-child) {
  margin-bottom: 36px;
}

.in_touch .intouch_content .intouch_allparts .intouch_single_part h4 {
  font-weight: 600;
  font-family: Montserrat;
  font-size: 24px;
  color: #FFFFFF;
}

.in_touch .intouch_content .intouch_allparts .intouch_single_part h5 a {
  color: inherit;
  text-decoration: none;
  font-family: Montserrat;
  font-size: 20px;
  font-weight: lighter;
  color: #ffffff
}

.in_touch .intouch_content .intouch_allparts .intouch_single_part * {
  font-family: var(--paragraph);
  text-transform: none;
}

.intouch_intro h3 {
  font-family: lora;
}

.white {
  color: #FFFFFF;
}

.white1 {
  color: #FFFFFF;
  font-family: lora;
  font-size: 58px;
  font-weight: lighter;
}

.in_touch img {
  margin-bottom: -146px;
}

.con-img {
  max-width: 100%;
  min-height: 832px;
  position: relative;
  /* padding: 0px 0 60px 0; */
  display: flex;
  align-items: center;
  background: url(../img/in_touch_bg2.png) center right no-repeat;
  background-size: cover;
  border-radius: 0px 0px 0px 0px;
  margin-bottom: 70px;
}

.in_touch .contact-l h2 {
  font-family: "Antic Didone", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 48px;
  line-height: 64px;
  color: #818181;
  margin-bottom: 40px;

}

.in_touch .contact-l h2 span {
  color: #FFFFFF;
}

.contact-m-para {
  font-family: "Raleway", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  line-height: 28px;
  font-size: 16px;
  color: #D7D7D7;
  margin-top: 20px;
  margin-bottom: 0px;
}

.contact-details {
  margin-top: 155px;
}

.contact-details .col {
  margin-bottom: 32px;
}

.in_touch .contact-details p {
  font-family: "Raleway", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  line-height: 28px;
  font-size: 14px;
  color: #D7D7D7;
  margin-bottom: 0px;
}

.in_touch .contact-details h4 {
  font-family: "Raleway", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-size: 24px;
  line-height: 32px;
  color: #FFFFFF;
}

.in_touch .contact-img {
  width: 725px;
  height: 852px;
}

@media screen and (max-width: 768px) {
  .con-img {
    background-position: right center;
    background-attachment: scroll;
  }

  .in_touch .contact-l h2 {
    font-size: 38px;
    line-height: 42px;
  }
}



/*--------------------------------------------------------------
# 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);
}

@media screen and (max-width: 768px) {
  .service-title-para {
    text-align: center;
    padding-left: 0px;
  }

  .services .content h2 {
    font-size: 38px;
    line-height: 50px;
  }
  .services .btn-get-started {
    width: 65%;
  }
  .service-content-btn {
    align-items: center;
  }
}