/* Fonts */ :root {
  /*
  --default-font: "Roboto",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Raleway",  sans-serif;
  --nav-font: "Montserrat",  sans-serif;
*/ ;
}
/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */ :root {
  --background-color: #ffffff;
  /* Background color for the entire website, including individual sections */
  --default-color: #52413a;
  /* Default color used for the majority of the text content across the entire website */
  --heading-color: #31221c;
  /* Color for headings, subheadings and title throughout the website */
  --accent-color: #f85d23;
  /* 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: #52413a; /* The default color of the main navmenu links */
  --nav-hover-color: #f85d23; /* 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: #52413a; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #f85d23; /* 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: #f8f5f4;
  --surface-color: #ffffff;
}
.dark-background {
  --background-color: #060606;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #343333;
  --contrast-color: #ffffff;
}
/* Smooth scroll */ :root {
  scroll-behavior: smooth;
}
/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  font-family: "Poppins", sans-serif;
  color: #444444;
  font-size: 16px
}
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 {}
/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}
.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}
.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}
.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}
@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  color: var(--default-color);
  /*
  background-color: var(--background-color);
  padding: 15px 0;
*/
  transition: all 0.5s;
  z-index: 997;
  background-color: rgba(255, 255, 255, .9);
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
/*
  padding-top: 20px;
  padding-bottom: 20px;
*/padding-top: 10px;
  padding-bottom: 10px;
}
.header .logo {
  line-height: 1;
}
.header .logo img {
  max-height: 36px;
  margin-right: 8px;
}
.header .logo h1 {
  font-size: 26px;
  margin: 0;
  font-weight: 600;
  color: var(--heading-color);
}
.header .btn-getstarted, .header .btn-getstarted:focus {
  color: var(--contrast-color);
  background: #fd7b7f;
  font-size: 14px;
  padding: 8px 25px;
  margin: 0 0 0 30px;
  border-radius: 50px;
  transition: 0.3s;
}
.header .btn-getstarted:hover, .header .btn-getstarted:focus:hover {
  color: var(--contrast-color);
  background: #ff696d;
}

/* Login button */
.login-btn{
    background:#ff7c83 !important;
    color:#fff !important;
    border-radius:50px;
   padding: 8px 25px !important;
    animation:pulseGlow 2.2s infinite;
/*	margin: 0 0 0 30px;*/
}

.login-btn:hover {
	color:#fff;
	background: #b12a77;
}

@keyframes pulseGlow{
    0%{
        box-shadow:0 0 0 0 rgba(255,124,131,.6);
    }
    70%{
        box-shadow:0 0 0 14px rgba(255,124,131,0);
    }
    100%{
        box-shadow:0 0 0 0 rgba(255,124,131,0);
    }
}

/* End Login Button */






@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;
  }
}
/* Global Header on Scroll
------------------------------*/
.scrolled .header {
  --background-color: rgba(244, 239, 237, 0.95);
}
/*--------------------------------------------------------------
# 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 > ul > li {
    white-space: nowrap;
    padding: 15px 14px;
  }
  .navmenu > ul > li:last-child {
    padding-right: 0;
  }
	
  .navmenu a, .navmenu a:focus {
    color: var(--nav-color);
    font-size: 15px;
    padding: 0 2px;
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
  }
  .navmenu a i, .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }
  .navmenu > ul > li > a:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -6px;
    left: 0;
    background-color: #fd7b7f;
    visibility: hidden;
    width: 0px;
    transition: all 0.3s ease-in-out 0s;
  }
	
	.navmenu > ul > li > a.login-btn:before { 
		background: none !important;
	}
	
	
  .navmenu a:hover:before, .navmenu li:hover > a:before, .navmenu .active:before {
    visibility: visible;
    width: 100%;
  }
  .navmenu li:hover > a, .navmenu .active, .navmenu .active:focus {
    color: #fd7b7f;
  }
  .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;
  }
}
/* 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);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
  }
  .navmenu a, .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    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);
    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;
  }
}

/*--------------------------------------------------------------
# Clients Section
--------------------------------------------------------------*/
.clients {
  padding: 25px 0; background: #242424;
}
.clients h3 { color: #ffda87; font-weight: 400; margin-bottom: 16px;}
.clients .swiper {
  padding: 10px 0;
}

.clients .swiper-wrapper {
  height: auto;
}

.clients .swiper-slide img {
  transition: 0.3s;
}

.clients .swiper-slide img:hover {
  transform: scale(1.1);
}

.swiper-slide {
	border-radius: 20px; 
/*	padding: 15px;*/
}
.pink{
    background: #FF9295;
background: linear-gradient(0deg,rgba(255, 146, 149, 1) 0%, rgba(255, 174, 177, 1) 100%);
	padding: 20px; border-radius: 20px; width: 100%; font-size: 18px; color: #fff; font-weight: 400;
}

.pink h5 { margin-top: 18px; }

.purple{
    background: #A790C4;
background: linear-gradient(0deg,rgba(167, 144, 196, 1) 0%, rgba(197, 176, 225, 1) 100%);
	padding: 20px; border-radius: 20px; width: 100%; font-size: 18px; color: #fff; font-weight: 400;
}
.purple h5 { margin-top: 18px; }

.blue{
    background: #3F4EB5;
background: linear-gradient(320deg,rgba(63, 78, 181, 1) 0%, rgba(139, 150, 225, 1) 100%);
	padding: 20px; border-radius: 20px; width: 100%; font-size: 18px; color: #fff; font-weight: 400;
}
.blue h5 { margin-top: 18px; }

.yellow{
    background: #FFD370;
background: linear-gradient(320deg,rgba(255, 211, 112, 1) 0%, rgba(255, 219, 137, 1) 100%);
	padding: 20px; border-radius: 20px; width: 100%; font-size: 18px; color: #fff; font-weight: 400;
}
.yellow h5 { margin-top: 18px; }

.orange{
    background: #FF9293;
background: linear-gradient(320deg,rgba(255, 146, 147, 1) 0%, rgba(251, 154, 80, 1) 100%);
	padding: 20px; border-radius: 20px; width: 100%; font-size: 18px; color: #fff; font-weight: 400;
}
.orange h5 { margin-top: 18px; }

.green{
    background: #64D9C9;
background: linear-gradient(320deg,rgba(100, 217, 201, 1) 0%, rgba(168, 253, 162, 1) 100%);
	padding: 20px; border-radius: 20px; width: 100%; font-size: 18px; color: #fff; font-weight: 400;
}

.green h5 { margin-top: 18px; }

/*
.custom-prev{
    left:0;
}

.custom-next{
    right:0;
}

.custom-prev,
.custom-next{
    width:55px;
    height:55px;
    border-radius:50%;
    background:#fff;
    border:1px solid rgba(255,255,255,.15);
    box-shadow:0 10px 30px rgba(0,0,0,.25);
    color:#333;
    transition:all .3s ease;
}
*/

/*--------------------------------------------------------------
# Starter Section
--------------------------------------------------------------*/
.starter-section {
	background: #f7f7f5;
	padding: 60px 0 0 0 !important;
}

.starter-section .section-title {
	text-align: center;
  padding-bottom: 0;
  position: relative;
}

.starter-section h2 {
	font-size: 40px !important;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  line-height: 54px !important;
}

.starter-section p {
	color: #575757; font-size: 18px;
}

.starter-section a {
	color: #e6593b; border-bottom: 5px solid #e6593b; font-size: 17px; padding-bottom: 5px; font-weight: 600; margin: 30px 0 0px 0; display: inline-block;
}


/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about {
  background: url("../img/left-bg.png") no-repeat center left;
}
.about .about-meta {
  color: #071126;
  font-weight: 600;
  margin-bottom: 1rem;
  display: inline-block;
  font-size: 20px;
}
.about .about-title {
  font-size: 40px;
  margin-bottom: 1rem;
  line-height: 55px;
  font-weight: 700;
}
.about .about-title span {
  color: #ff696d;
  background: linear-gradient(to right, #ff485d, #fb9b46);
  ;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 992px) {
  .about .about-title {
    font-size: 2rem;
  }
}
.about .about-description {
  margin-bottom: 2rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}
.about .feature-list-wrapper {
  margin-bottom: 1rem;
}
.about .feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.about .feature-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 7px;
  font-size: 1rem;
}
.about .feature-list li i {
  color: #e6593b;
  font-size: 1.25rem;
}
.about .profile .profile-image {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}
.about .profile .profile-name {
  font-size: 1.125rem;
  margin: 0;
}
.about .profile .profile-position {
  color: var(--accent-color);
  margin: 0;
  font-size: 0.875rem;
}
.about .contact-info {
  padding: 1rem 1.1rem;
  background-color: var(--surface-color);
  border-radius: 0.5rem;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.06);
}
.about .contact-info i {
  color: var(--accent-color);
  font-size: 1.5rem;
}
.about .contact-info .contact-label {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 0.875rem;
  margin: 0;
}
.about .contact-info .contact-number {
  font-weight: 600;
  margin: 0;
}
.about .image-wrapper {
  position: relative;
}
@media (max-width: 992px) {
  .about .image-wrapper {
    padding-left: 0;
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }
}
@media (max-width: 992px) {
  .about .image-wrapper .images {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
}
@media (max-width: 992px) {
  .about .image-wrapper .main-image {
    margin-left: 0;
  }
}
.about .image-wrapper .small-image {
      position: absolute;
    top: 40%;
    left: -10%;
    width: 45%;
    border: 5px solid var(--surface-color);
    background-color: rgb(255 255 255 / 0.5);
    padding: 10px;
    border-radius: 25px !important;
	box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
	    animation: experience-float 5s ease-in-out infinite;
}

@media (max-width: 992px) {
  .about .image-wrapper .small-image {
    position: static;
    width: 100%;
    margin: 0 auto;
    border: 0;
  }
}
.about .image-wrapper .experience-badge {
  position: absolute;
  bottom: 5%;
  right: 5%;
  background-color: #ff696d;
  color: var(--contrast-color);
  padding: 15px;
  border-radius: 15px;
  text-align: center;
/*  min-width: 150px;*/
  animation: experience-float 3s ease-in-out infinite;
}
@media (max-width: 992px) {
  .about .image-wrapper .experience-badge {
    position: static;
    width: fit-content;
    margin: 0 auto;
  }
}
.about .image-wrapper .experience-badge h3 {
  color: var(--contrast-color);
  font-size: 2.5rem;
  margin: 0;
  line-height: 0.5;
}
.about .image-wrapper .experience-badge h3 span {
  font-size: 1rem;
  display: inline-block;
  margin-left: 0.25rem;
}
.about .image-wrapper .experience-badge p {
  margin: 0.5rem 0 0;
  font-size: 0.875rem;
}
@keyframes experience-float {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}
/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/
.pricing {
  padding: 60px 0 120px 0;
}
.pricing .section-title {
  margin-bottom: 40px;
}
.pricing .pricing-item {
  background-color: var(--surface-color);
  box-shadow: 0 3px 20px -2px rgba(0, 0, 0, 0.1);
  padding: 60px 40px;
  height: 100%;
  position: relative;
  border-radius: 15px;
}
.pricing h3 {
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 20px;
  text-align: center;
}
.pricing .icon {
  margin: 30px auto 20px auto;
  width: 70px;
  height: 70px;
  background: #ff696d;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
  transform-style: preserve-3d;
}
.pricing .icon i {
  color: var(--background-color);
  font-size: 28px;
  transition: ease-in-out 0.3s;
  line-height: 0;
}
.pricing .icon::before {
  position: absolute;
  content: "";
  height: 86px;
  width: 86px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--accent-color), transparent 80%);
  transition: all 0.3s ease-out 0s;
  transform: translateZ(-1px);
}
.pricing .icon::after {
  position: absolute;
  content: "";
  height: 102px;
  width: 102px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  transition: all 0.3s ease-out 0s;
  transform: translateZ(-2px);
}
.pricing h4 {
  font-size: 48px;
  color: #ff696d;
  font-weight: 700;
  margin-bottom: 25px;
  text-align: center;
}
.pricing h4 sup {
  font-size: 28px;
}
.pricing h4 span {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 18px;
  font-weight: 400;
}
.pricing ul {
  padding: 20px 0;
  list-style: none;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  text-align: left;
  line-height: 20px;
}
.pricing ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}
.pricing ul i {
  color: #059652;
  font-size: 24px;
  padding-right: 3px;
}
.pricing ul .na {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}
.pricing ul .na i {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}
.pricing ul .na span {
  text-decoration: line-through;
}
.pricing .buy-btn {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  display: inline-block;
  padding: 8px 40px 10px 40px;
  border-radius: 50px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  transition: none;
  font-size: 16px;
  font-weight: 600;
  transition: 0.3s;
}
.pricing .buy-btn:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}
.pricing .featured {
  z-index: 10;
  border: 3px solid #ff696d;
}
@media (min-width: 992px) {
  .pricing .featured {
    transform: scale(1.15);
  }
}
/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials {
  position: relative;
  overflow: hidden;
  /* Swiper Navigation */
  /* Swiper Pagination */
  /* Responsive Styles */
	background: url("../img/testimonial-bg-right01.jpg") no-repeat top right;
}
.testimonials .testimonial-slider {
  position: relative;
  padding-bottom: 50px;
}
.testimonials .testimonial-slider .swiper-wrapper {
  height: auto !important;
}
.testimonials .testimonial-item {
  background: linear-gradient(135deg, var(--surface-color) 0%, color-mix(in srgb, var(--surface-color), var(--accent-color) 2%) 100%);
  border-radius: 20px;
  padding: 0;
  height: 100%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
	border-bottom: 3px solid color-mix(in srgb, var(--default-color), transparent 90%);;
  transition: all 0.4s ease;
  overflow: hidden;
  position: relative;
}
.testimonials .testimonial-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-color), color-mix(in srgb, var(--accent-color), var(--heading-color) 30%));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.testimonials .testimonial-item:hover {
  border-color: #ff696d;
}
.testimonials .testimonial-item:hover::before {
  transform: scaleX(1);
}
.testimonials .testimonial-item:hover .testimonial-header img {
  transform: scale(1.05);
}
.testimonials .testimonial-item:hover .quote-icon {
  color: var(--accent-color);
  transform: scale(1.1);
}
.testimonials .testimonial-header {
  position: relative;
  text-align: center;
/*  padding: 30px 30px 20px;*/
  background: linear-gradient(135deg, color-mix(in srgb, var(--surface-color), var(--accent-color) 3%) 0%, var(--surface-color) 100%);
}
.testimonials .testimonial-header img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid color-mix(in srgb, var(--accent-color), transparent 70%);
  margin-bottom: 15px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.testimonials .testimonial-header .rating {
  display: flex;
  justify-content: center;
  gap: 3px;
}
.testimonials .testimonial-header .rating i {
  color: #ffc107;
  font-size: 0.9rem;
}
.testimonials .testimonial-body {
  padding: 30px 20px 20px 20px;
}
.testimonials .testimonial-body p {
  font-size: 15px;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 0;
  font-style: italic;
  text-align: center;
  position: relative;
}
.testimonials .testimonial-body p::before, .testimonials .testimonial-body p::after {
  content: '"';
  font-size: 1.5rem;
  color: var(--accent-color);
  opacity: 0.6;
  position: absolute;
}
.testimonials .testimonial-body p::before {
  top: -5px;
  left: -10px;
}
.testimonials .testimonial-body p::after {
  bottom: -20px;
  right: -5px;
}
.testimonials .testimonial-footer {
  padding: 20px 30px 30px;
  text-align: center;
  position: relative;
}
.testimonials .testimonial-footer h5 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--heading-color);
  margin: 0 0 5px;
}
.testimonials .testimonial-footer span {
  font-size: 0.85rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  display: block;
  margin-bottom: 15px;
}
.testimonials .testimonial-footer .quote-icon {
  position: absolute;
  bottom: 15px;
  right: 25px;
  color: color-mix(in srgb, var(--accent-color), transparent 60%);
  font-size: 1.5rem;
  transition: all 0.3s ease;
}
.testimonials .swiper-navigation {
  position: relative;
  margin-top: 25px;
  display: flex;
  justify-content: flex-end;
}
.testimonials .swiper-button-prev, .testimonials .swiper-button-next {
  position: static;
  width: 45px;
  height: 45px;
  margin: 0 10px;
  background: #ff696d;
  border-radius: 50%;
  color: var(--contrast-color);
  font-size: 16px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
.testimonials .swiper-button-prev:hover, .testimonials .swiper-button-next:hover {
  background: color-mix(in srgb, var(--accent-color), var(--heading-color) 20%);
  transform: scale(1.05);
}
.testimonials .swiper-button-prev::after, .testimonials .swiper-button-next::after {
  font-size: 16px;
  font-weight: 600;
}
.testimonials .swiper-pagination {
  position: static;
  margin-top: 30px;
  text-align: center;
}
.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: color-mix(in srgb, var(--default-color), transparent 70%);
  opacity: 1;
  margin: 0 6px;
  transition: all 0.3s ease;
}
.testimonials .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: var(--accent-color);
  transform: scale(1.2);
}
@media (max-width: 1199px) {
  .testimonials .testimonial-item .testimonial-header {
    padding: 25px 25px 15px;
  }
  .testimonials .testimonial-item .testimonial-header img {
    width: 70px;
    height: 70px;
  }
  .testimonials .testimonial-item .testimonial-body, .testimonials .testimonial-item .testimonial-footer {
    padding-left: 25px;
    padding-right: 25px;
  }
}
@media (max-width: 991px) {
  .testimonials .testimonial-item {
    margin-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .testimonials .testimonial-item .testimonial-header {
    padding: 20px 20px 10px;
  }
  .testimonials .testimonial-item .testimonial-header img {
    width: 60px;
    height: 60px;
  }
  .testimonials .testimonial-item .testimonial-header .rating i {
    font-size: 0.8rem;
  }
  .testimonials .testimonial-item .testimonial-body {
    padding: 0 20px 15px;
  }
  .testimonials .testimonial-item .testimonial-body p {
    font-size: 0.95rem;
  }
  .testimonials .testimonial-item .testimonial-footer {
    padding: 15px 20px 20px;
  }
  .testimonials .testimonial-item .testimonial-footer h5 {
    font-size: 1rem;
  }
  .testimonials .testimonial-item .testimonial-footer span {
    font-size: 0.8rem;
  }
  .testimonials .testimonial-item .testimonial-footer .quote-icon {
    font-size: 1.3rem;
    bottom: 10px;
    right: 15px;
  }
  .testimonials .swiper-button-prev, .testimonials .swiper-button-next {
    width: 40px;
    height: 40px;
    font-size: 14px;
  }
  .testimonials .swiper-button-prev::after, .testimonials .swiper-button-next::after {
    font-size: 14px;
  }
}
@media (max-width: 575px) {
  .testimonials .testimonial-slider {
    padding-bottom: 30px;
  }
  .testimonials .testimonial-item .testimonial-header {
    padding: 15px 15px 10px;
  }
  .testimonials .testimonial-item .testimonial-header img {
    width: 55px;
    height: 55px;
  }
  .testimonials .testimonial-item .testimonial-body {
    padding: 0 15px 10px;
  }
  .testimonials .testimonial-item .testimonial-body p {
    font-size: 0.9rem;
  }
  .testimonials .testimonial-item .testimonial-footer {
    padding: 10px 15px 15px;
  }
  .testimonials .testimonial-item .testimonial-footer h5 {
    font-size: 0.95rem;
  }
  .testimonials .testimonial-item .testimonial-footer .quote-icon {
    font-size: 1.2rem;
  }
  .testimonials .swiper-navigation {
    margin-top: 10px;
  }
}


/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact {
  padding: 60px 0 100px;
	background: #f9f9f9;
	color: #666666;
}

.contact .section-title p {
    font-size: 16px;
    line-height: 1.8;
    color: 
 color-mix(in srgb, var(--default-color), transparent 25%);
    max-width: 900px;
    margin: 0 auto;
    text-wrap: balance;
}

.contact .info-item {
  margin-bottom: 80px;
}

.contact .info-item .info-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 32px;
}

.contact .info-item .info-icon i {
  font-size: 24px;
  color: var(--accent-color);
}

.contact .info-item .info-content h4 {
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 16px;
  color: var(--heading-color);
  letter-spacing: -0.3px;
}

.contact .info-item .info-content p {
  font-size: 16px;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin: 0;
}

.contact .contact-details .detail-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 48px;
}

.contact .contact-details .detail-item:last-child {
  margin-bottom: 0;
}

.contact .contact-details .detail-item .detail-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact .contact-details .detail-item .detail-icon i {
  font-size: 18px;
  color: var(--accent-color);
}

.contact .contact-details .detail-item .detail-content {
  flex: 1;
}

.contact .contact-details .detail-item .detail-content .detail-label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 6px;
}

.contact .contact-details .detail-item .detail-content .detail-value {
  display: block;
  font-size: 16px;
  color: var(--default-color);
  line-height: 1.6;
}

.contact .form-header {
  margin-bottom: 48px;
}

.contact .form-header h3 {
  font-size: 32px;
  font-weight: 300;
  color: var(--heading-color);
  margin: 0;
  letter-spacing: -0.4px;
}

.contact .form-wrapper {
  background-color: var(--surface-color);
  padding: 20px 30px;
  border-radius: 10px;
}

.contact .form-wrapper .form-group {
  margin-bottom: 32px;
}

.contact .form-wrapper .form-group label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--heading-color);
  margin-bottom: 12px;
  letter-spacing: 0.2px;
}

.contact .form-wrapper .form-group input,
.contact .form-wrapper .form-group select,
.contact .form-wrapper .form-group textarea {
  width: 100%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-radius: 8px;
  padding: 16px 20px;
  font-size: 15px;
  color: var(--default-color);
  background-color: var(--surface-color);
  transition: all 0.3s ease;
  font-family: inherit;
}

.contact .form-wrapper .form-group input:focus,
.contact .form-wrapper .form-group select:focus,
.contact .form-wrapper .form-group textarea:focus {
  outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent-color), transparent 90%);
}

.contact .form-wrapper .form-group input::placeholder,
.contact .form-wrapper .form-group select::placeholder,
.contact .form-wrapper .form-group textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.contact .form-wrapper .form-group select {
  cursor: pointer;
}

.contact .form-wrapper .form-group select option {
  padding: 10px;
}

.contact .form-wrapper .form-group textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.6;
}

.contact .form-wrapper .submit-btn {
  background: #ff696d;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 18px 36px;
  font-size: 15px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  letter-spacing: 0.3px;
}

.contact .form-wrapper .submit-btn i {
  font-size: 16px;
  transition: transform 0.3s ease;
}

.contact .form-wrapper .submit-btn:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 10%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.contact .form-wrapper .submit-btn:hover i {
  transform: translateX(4px);
}

@media (max-width: 768px) {
  .contact {
    padding: 80px 0 60px;
  }

  .contact .info-item {
    margin-bottom: 50px;
  }

  .contact .info-item .info-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 24px;
  }

  .contact .info-item .info-icon i {
    font-size: 20px;
  }

  .contact .info-item .info-content h4 {
    font-size: 20px;
    margin-bottom: 12px;
  }

  .contact .contact-details .detail-item {
    margin-bottom: 32px;
  }

  .contact .form-header {
    margin-bottom: 32px;
  }

  .contact .form-header h3 {
    font-size: 24px;
  }

  .contact .modern-form .form-group {
    margin-bottom: 24px;
  }
}

/*--------------------------------------------------------------
# Registration Section
--------------------------------------------------------------*/

.form-select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='%23666' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 16px 12px;
	min-height: calc(1.5em + 1rem + calc(var(--bs-border-width) * 2));
    padding: 16px 20px;
    font-size: 16px;
    border-radius: var(--bs-border-radius-lg);
    color: #535353;
    transition: all 0.3s ease;
}

.form-select{
    appearance: auto;
    -webkit-appearance: auto;
    -moz-appearance: auto;
	
}

.form-control {
    appearance: none;
}

select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='%23666' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 16px 12px;
	min-height: calc(1.5em + 1rem + calc(var(--bs-border-width) * 2));
    padding: 16px 20px;
    font-size: 16px;
    border-radius: var(--bs-border-radius-lg);
    color: #535353;
    transition: all 0.3s ease;
}

.registration-area {
	
	float: left; width: 100%;
}

.registration-area p {
	float: left;
    width: 100%;
    font-size: 16px;
    font-weight: 400;
}

.registration-area .backtohome-link { 
	float: left; color: #222; border-bottom: 2px solid #222; padding: 0 5px 7px 0; margin-top: 15px; font-weight: 500; font-size: 14px; 
}

.registration-area .backtohome-link i { margin-right: 5px; color: #000; font-weight: 700;}
.registration-area .backtohome-link:hover { color: #343434;}


.registration-area h1 {
	
	float: left; width: 100%; margin-top: 25px; font-size: 30px; color: #000; margin-bottom: 15px;
}

.registration-area form label {
	float: left; width: 100%; font-weight: 500; color: #535353; font-size: 15px;
}
.registration-area form .regitation-btn { background: #ff696d;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 18px 36px;
    font-size: 15px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.3px;
	margin-top: 15px;
}

/*--------------------------------------------------------------
# HappyClients Section
--------------------------------------------------------------*/
.happyclients .happyclient-item {
  padding: 7px;
  text-align: center;
  height: 100%;
  background-color: var(--surface-color);
  border-radius: 8px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  transition: all 0.3s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
}

.happyclients h3 { float: left; width: 100%; text-align: center; font-size: 20px; color: #464646; margin-bottom: 25px;}
.happyclients .happyclient-item img {
  max-width: 100%;
  transition: all 0.3s ease-in-out;
  filter: grayscale(100);
  opacity: 0.8;
}
.happyclients .happyclient-item:hover {
  transform: translateY(-5px);
  border-color: var(--accent-color);
}
.happyclients .happyclient-item:hover img {
  filter: grayscale(0);
  opacity: 1;
}
@media (max-width: 1199px) {
  .happyclients .happyclient-item {
    padding: 1.25rem;
  }
}
@media (max-width: 767px) {
  .happyclients .happyclient-item {
    padding: 1rem;
  }
}
/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: #fff;
  background-color: #071126;
  font-size: 14px;
  position: relative;
}
.footer .copyright {
  padding: 15px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}
.footer .copyright p {
  margin-bottom: 0;
}
.footer .credits {
  margin-top: 8px;
  font-size: 13px;
}

.footer .credits a {
	color: #b12a77;
}
/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 99999;
/*  background-color: var(--accent-color);*/
	background-color: #b12a77;
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
	animation: experience-float 5s ease-in-out infinite;
}
.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 {
  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;
  font-weight: 400;
}
.page-title .breadcrumbs ol li + li {
  padding-left: 10px;
}
.page-title .breadcrumbs ol li + li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}
/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section, .section {
  color: #000;
/*  background-color: #fff;*/
/*  padding: 60px 0;*/
	padding: 40px 0;
  scroll-margin-top: 82px;
  overflow: clip;
}
@media (max-width: 1199px) {
  section, .section {
    scroll-margin-top: 63px;
  }
}
/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
}
.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}
.section-title h2:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}
.section-title p {
  margin-bottom: 0;
}
/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  padding: 0px 0;
}
.hero .hero-content {
  margin-bottom: 2rem;
}
@media (min-width: 992px) {
  .hero .hero-content {
    margin-bottom: 0;
  }
}
.hero .hero-tag {
  display: inline-flex;
  align-items: center;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  margin-bottom: 1rem;
}
.hero .hero-tag i {
  color: var(--accent-color);
  margin-right: 0.5rem;
}
.hero .hero-tag span {
  color: var(--accent-color);
  font-weight: 600;
}
.hero h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.hero h1 .highlight {
/*  color: #ff9295;*/
	color: #ff696d;
    background: linear-gradient(to right, #ff485d, #fb9b46);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
@media (min-width: 992px) {
  .hero h1 {
    font-size: 60px;
    padding-top: 150px;
  }
}
.hero .lead {
  color: #000;
  margin-bottom: 50px;
  font-size: 18px;
  font-weight: 400;
}
.hero .hero-features {
  list-style: none;
  padding-left: 0;
  margin-bottom: 2rem;
}
.hero .bannertextarea {
  width: 100%;
  display: flex;
  margin-bottom: 30px;
}
.hero .hero-features {
  margin: 0 15px 0 0;
  padding: 0;
  list-style-type: none;
}
.hero .hero-features li {
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  color: #000
}
.hero .hero-features li i {
  color: #ff9295;
  margin-right: 0.5rem;
}
.hero .hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.hero .hero-cta .btn-primary {
  background-color: #ff9295;
  border-color: #ff9295;
  color: #fff;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  transition: all 0.3s ease;
}
.hero .hero-cta .btn-primary:hover {
  background: #ff8184;
  border-color: #ff8184;
}
.hero .hero-cta .btn-link {
  color: var(--heading-color);
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}
.hero .hero-cta .btn-link i {
  margin-right: 0.5rem;
}
.hero .hero-cta .btn-link:hover {
  color: var(--accent-color);
}



.salesbtn {
  background: #ff696d;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 18px 36px;
  font-size: 15px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  letter-spacing: 0.3px;
}

.salesbtn i {
  font-size: 16px;
  transition: transform 0.3s ease;
}

.salesbtn:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 10%);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.salesbtn:hover i {
  transform: translateX(4px);
}



.hero .hero-image-wrapper {
  position: relative;
  /*  padding: 0 40px;*/
}
.hero .hero-image-wrapper .hero-image {
  border-radius: 10px;
}
.hero .hero-image-wrapper .stat-card {
  position: absolute;
  background-color: var(--surface-color);
  padding: 1rem;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 150px;
}
.hero .hero-image-wrapper .stat-card.top-right {
  top: 40px;
  right: 0px;
	animation: experience-float 5s ease-in-out infinite;
}
.hero .hero-image-wrapper .stat-card.bottom-left {
  bottom: 40px;
  left: 0px;
	animation: experience-float 5s ease-in-out infinite;
}

.hero .hero-image-wrapper .star-area {
	
	position: absolute;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 162px;
}

.hero .hero-image-wrapper .star-area.bottom-right {
  bottom: 70px;
  right: -72px;
	animation: experience-float 7s ease-in-out infinite;
}

.hero .hero-image-wrapper .stat-card .stat-value {
  font-size: 18px;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 0.25rem;
}
.hero .hero-image-wrapper .stat-card .stat-label {
  font-size: 0.875rem;
  color: var(--heading-color);
  margin-bottom: 0.5rem;
}
.hero .hero-image-wrapper .stat-card .stat-icon {
  align-self: flex-end;
  font-size: 1.25rem;
  color: color-mix(in srgb, var(--accent-color), transparent 50%);
  position: absolute;
}
@media (max-width: 575px) {
  .hero .hero-image-wrapper {
    padding: 0;
  }
  .hero .hero-image-wrapper .stat-card {
    position: relative;
  }
  .hero .hero-image-wrapper .stat-card.top-right, .hero .hero-image-wrapper .stat-card.bottom-left {
    inset: auto;
    margin-top: 30px;
  }
}
@media only screen and (min-width:1200px) and (max-width: 1366px) {
  .hero .hero-image-wrapper {
    /*    position: absolute;*/
    top: 1px;
    right: 0px;
  }
  .hero .hero-image-wrapper img {
    width: 100%;
    left: 52%;
    top: 98px;
  }
  .hero h1 {
    font-size: 35px;
    padding-top: 114px;
  }
  .hero .lead {
    font-size: 16px;
    margin-bottom: 13px;
  }
  .hero .hero-features li {
    font-size: 15px;
  }
}
@media only screen and (min-width:992px) and (max-width: 1199px) {
  .hero h1 {
    font-size: 25px;
    padding-top: 95px;
  }
  .hero .lead {
    margin-bottom: 13px;
    font-size: 15px;
  }
  .hero .hero-image-wrapper {
    /*    position: absolute;*/
    top: 1px;
    right: 0px;
  }
  .hero .hero-image-wrapper img {
    width: 100%;
    left: 52%;
    top: 98px;
  }
  .hero .bannertextarea {
    display: block;
  }
  .hero .hero-features li {
    font-size: 15px;
  }
}
@media only screen and (min-width:768px) and (max-width: 991px) {
  .hero h1 {
    font-size: 44px;
    padding-top: 113px;
  }
  .hero .lead {
    color: #000;
    margin-bottom: 50px;
    font-size: 18px;
    font-weight: 400;
    float: left;
    width: 62%;
  }
  .hero .hero-image-wrapper img {
    position: relative;
    width: 50%;
    left: 52%;
    top: 98px;
  }
  .hero .hero-image-wrapper {
    position: absolute;
    top: 1px;
    right: 0;
  }
  .hero .hero-image-wrapper .stat-card.bottom-left {
    bottom: 40px;
    right: 0px;
    bottom: -193px;
    left: auto;
  }
}
@media only screen and (min-width:576px) and (max-width: 767px) {
  .hero h1 {
    font-size: 32px;
    padding-top: 113px;
  }
  .hero .lead {
    color: #000;
    margin-bottom: 20px;
    font-size: 17px;
    font-weight: 400;
    float: left;
    width: 100%;
  }
  .hero .hero-image-wrapper img {
    position: relative;
/*    width: 70%;*/
	  width: 100%;
    left: anchor;
    top: 0;
  }
  .hero .hero-image-wrapper .stat-card.top-right {
    top: -80px;
    right: 0px;
  }
  .hero .hero-image-wrapper {
    position: relative;
    top: 0px;
    right: 0;
  }
  .hero .hero-image-wrapper .stat-card.bottom-left {
    /*    bottom: 40px;*/
    right: 0px;
    bottom: 0;
    left: auto;
  }
}
@media only screen and (min-width:320px) and (max-width: 575px) {
  .header .logo img {
    max-height: 26px;
    margin-right: 8px;
    vertical-align: top;
  }
  .hero h1 {
    font-size: 20px;
    padding-top: 80px;
  }
  .hero .lead {
    font-size: 15px;
    line-height: normal;
    margin-bottom: 20px;
  }
  .hero .bannertextarea {
    display: block;
  }
  .hero .hero-features li {
    font-size: 14px;
  }
  .hero .hero-image-wrapper img {
    position: relative;
    width: 100%;
    left: anchor;
    top: 0;
  }
  .hero .hero-image-wrapper .stat-card.top-right {
    top: -27px;
    right: 0px;
    position: absolute;
    margin-top: 0;
    width: 155px;
    padding: 10px;
  }
  .hero .hero-image-wrapper {
    position: relative;
    top: 0px;
    right: 0;
  }
  .hero .hero-image-wrapper .stat-card.bottom-left {
    bottom: 40px;
    right: 0px;
    bottom: 0;
    left: auto;
  }
  .hero .hero-image-wrapper .stat-card .stat-icon {
    display: none;
  }
  .hero .hero-image-wrapper .stat-card .stat-value {
    font-size: 15px;
    margin-bottom: 0;
    color: #ff9295;
  }
  .hero .hero-image-wrapper .stat-card .stat-label {
    margin-bottom: 0;
  }
  .hero .hero-image-wrapper .stat-card.bottom-left {
    left: 0px;
    position: absolute;
    margin-top: 0;
    width: 155px;
    padding: 10px;
  }
}