:root {
    --primary: #64a305;
    --secondary: #111e0b;
    --primary-invert: #fff;
    --secondary-invert: #fff;
    --accent: #edb8a6;

    --gradient-primary: linear-gradient(230deg, #a6b97a, #a6b97a);

    --gradient-secondary: linear-gradient(230deg, #173c15, #173c15);

    /* DEFAULT COLOR OF TEXTS */
    --text-primary: #0a1f44;

    /* FOR BUTTONS & INPUTS */
    --elements-roundness: 10rem;

    --space-between-blocks: 5.3rem;

    --background-image: url('/images/watercolorbackground.jpg');
    --block-backgrounds-main: #ffe5d99c;
    --gradientfordivs: linear-gradient(to right, #fef1e7, #ffffff);


    /* for mobiles */
    --space-between-blocks-small-screens: 3rem;
  }

  /* nunito-sans-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Nunito Sans';
  font-style: normal;
  font-weight: 400;
  src: url('/fonts/nunito-sans-v15-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* nunito-sans-500 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Nunito Sans';
  font-style: normal;
  font-weight: 500;
  src: url('/fonts/nunito-sans-v15-latin-500.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* nunito-sans-700 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Nunito Sans';
  font-style: normal;
  font-weight: 700;
  src: url('/fonts/nunito-sans-v15-latin-700.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

  .custom-card {
    background-color: var(--primary);
    color: var(--primary-invert);
    }

  /* Default (desktop) */
body {
  font-family: "Nunito Sans", sans-serif;
  color: var(--text-primary);
margin: 0;
padding: 0;


}

.fill {
  background-color: var(--accent);
  padding: 5px;
}

h1 h2 h3 h4 {
  font-family: "Nunito Sans", sans-serif;

}

@media (max-width: 768px) {
  body {
    background-attachment: scroll; /* Default scrolling behavior for mobile */
  }
}
/*ANIMATIONS */

@keyframes fadeSlideIn {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes zoomFadeIn {
  0% {
    opacity: 0;
    transform: scale(0.8);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.mackbook-mockup-container {
  animation: zoomFadeIn 1.5s ease-out both;
}

.mackbook-mockup__img {
  animation: zoomFadeIn 1.5s ease-out both;
}


.hero__body {
  animation: fadeSlideIn 1s ease-out both;
}

.hero__paragraph {
  animation: fadeSlideIn 1.5s ease-out both;
}

.hero__btns-container {
  animation: fadeSlideIn 2s ease-out both;
}


.block-31__row {
  animation: fadeSlideIn 1.2s ease-out both;
}

.block-31__text {
  animation: fadeSlideIn 1.5s ease-out both;
}

.hero__btns-container {
  animation: fadeSlideIn 2s ease-out both;
}






.btn.primary-btn:hover {
  background-position: 100% 0 !important; /* Animate gradient to shift */
  transform: scale(1.1) !important; /* Grow slightly */
  color: #000 !important; /* Keep text white */
  background: linear-gradient(45deg, #a6b97a, #d7c5a0) !important;

}

/* Animations End */

  .space-between-blocks {
    padding-top: var(--space-between-blocks-small-screens);
    padding-bottom: var(--space-between-blocks-small-screens);
  }

  @media (min-width: 992px) {
    .space-between-blocks {
      padding-top: var(--space-between-blocks);
      padding-bottom: var(--space-between-blocks);
    }
  }


  /* Buttons */

  button {
    color: inherit;
    padding: 0;
    background: none;
    border: none;
  }

  button:focus {
    outline: none;
    box-shadow: none;
  }

  .btn {
    font-size: 0.87rem;
    padding: 0.8rem 1.6rem;
    border: none;
    border-radius: var(--elements-roundness);
    transition: 0.2s all;
  }

  @media (min-width: 992px) {
    .btn {
      padding: 0.8rem 2rem;
    }
  }

  .btn,
  .btn:hover,
  .btn:focus {
    border: none;
    box-shadow: none;
    outline: none;
  }

  .btn:hover,
  .btn:focus {
    transform: scale(1.05);
  }

  .btn-primary,
  .btn-primary:hover,
  .btn-primary:focus {
    background: var(--gradient-primary, --primary);
    color: var(--primary-invert);
  }

  .btn-secondary,
  .btn-secondary:hover,
  .btn-secondary:focus {
    background: var(--gradient-secondary, --secondary);
    color: var(--secondary-invert);
  }

  .btn-primary--empty,
  .btn-primary--empty:hover,
  .btn-primary--empty:focus {
    color: var(--primary);
  }

  .btn-sm {
    padding: 0.8rem;
  }

  .highlight {
    color: var(--primary)
  }

  /* block header */

  .block__header {
    margin-bottom: 4rem;
  }

  .block__title {
    font-size: 2rem;
    font-weight: 900;
    line-height: 1.4;
  }

  @media(min-width: 992px) {
    .block__title {
      font-size: 2.5rem;
    }

    .block__title--big {
      font-size: 3rem;
      line-height: 1.1;
    }
  }

  @media(min-width: 1200px) {
    .block__title--big {
      font-size: 3.5rem;
      line-height: 1.2;
    }
  }

  .block__paragraph {
    font-size: 1.1rem;
    line-height: 1.5;
    opacity: .9;
  }

  @media(min-width: 992px) {
    .block__paragraph--big {
      font-size: 1.2rem;
      line-height: 1.6;
    }
  }

  /* Icons */

  .fr-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    height: 2.5rem;
    width: 2.5rem;
    border-radius: 5px;
    margin-bottom: 1.5rem;
    transition: .5s;
  }

  .fr-icon--medium {
    font-size: 1.5rem;
    height: 3rem;
    width: 3rem;
  }

  .fr-icon--large {
    font-size: 1.2rem;
    height: 3.25rem;
    width: 3.25rem;
  }

  @media (min-width: 992px) {
    .fr-icon--large {
      height: 3.8rem;
      width: 3.8rem;
      font-size: 1.9rem;
    }
  }

  /* Put your blocks here */




/* Default (unclicked) link color - White */
.navbar {
  background: transparent; /* Semi-transparent */
  backdrop-filter: blur(10px); /* Adjust blur amount */
  -webkit-backdrop-filter: blur(10px); /* Safari support */
  z-index: 1000; /* Ensure navbar is above other content */
}

.navbar-nav .nav-link {
  color: black !important; /* Default color: Black */
  transition: all 0.3s ease-in-out;
  font-weight: 400;
  border-bottom: 2px solid transparent; /* Default border (invisible) */
  padding-bottom: 4px; /* Adjust padding to make the border effect visible */
}

/* Hover state (when mouse hovers over link) */
.navbar-nav .nav-link:hover {
  color: #64a305 !important; /* Hover color: Green */
  text-decoration: none; /* Remove underline on hover */
}

/* Active link (the currently selected page) */
.navbar-nav .nav-link.active,
.navbar-nav .nav-link:focus {
  color: white !important; /* Active color: White */
  font-weight: bold; /* Make active link bold */
  background-color: #64a305; /* Green background for active link */
  border-radius: 4px; /* Optional: Rounded corners for active state */
}

/* When the link is clicked (active/pressed state) */
.navbar-nav .nav-link:active {
  color: black !important; /* Clicked color: Black */
}

/* Navbar brand styles */
.navbar-brand {
  font-size: 1.5rem; /* Adjust logo size */
  font-weight: bold;
  font-family: "Russo One", serif;
  color: whitesmoke;
}

.navbar-toggler {
  border: none !important; /* Removes default border */
  box-shadow: none !important; /* Removes focus outline/shadow */
  outline: none !important; /* Prevents outline when clicked */
}

/* If you want to change the color of the hamburger lines */
.navbar-toggler-icon {
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 30 30" fill="%2364a305"><path stroke="currentColor" stroke-width="2" d="M4 7h22M4 15h22M4 23h22"/></svg>');
}

@media (max-width: 991px) { /* Applies only when navbar is collapsed */
  .navbar-collapse {
      text-align: center;
  }
  .navbar-nav {
      width: 100%;
  }
  .navbar-nav .nav-item {
      margin: 10px 0; /* Space between items */
  }
}


.hero {
  --hero-nav-height: 100px;
  --block-background: url('/images/watercolorbackground.jpg'); 
  --block-text-color: var(--text-primary);
  background: var(--block-background) no-repeat center center;
  background-size: cover; 
  color: var(--block-text-color);
  position: relative;
  display: flex;
  flex-direction: column;
  
}

/*
.hero {
  --hero-nav-height: 100px;
  --block-background: url('/images/watercolorbackground.jpg'); 
  background: linear-gradient(to top, rgba(237, 184, 166, 1), rgba(237, 184, 166, 0.5), rgba(237, 184, 166, 0)) no-repeat bottom/100% 35%, url('/images/watercolorbackground.jpg') center/cover no-repeat;

  background-size: cover; 
  color: var(--block-text-color);
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  
}
*/


.hero-nav {
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: var(--hero-nav-height);
  display: flex;
  align-items: center;
  z-index: 2
}

.hero-nav__item {
  margin: auto;
  font-size: 1.1rem
}

@media (min-width:992px) {
  .hero-nav__item {
    margin: 0 1rem
  }
}

@media (min-width:992px) {
  .nav--lg-side {
    flex-direction: row-reverse
  }
}

.hero-nav__logo {
  height: 35px
}

.hero-nav__link {
  color: inherit;
  opacity: .9;
  text-decoration: none
}

.hero-nav__link:focus,
.hero-nav__link:hover {
  color: inherit;
  text-decoration: none;
  opacity: 1
}

.ft-menu {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 2000;
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
  -webkit-animation-duration: .5s;
  animation-duration: .5s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both
}

@media (print),
(prefers-reduced-motion:reduce) {
  .ft-menu {
    -webkit-animation-duration: 1ms !important;
    animation-duration: 1ms !important;
    -webkit-transition-duration: 1ms !important;
    transition-duration: 1ms !important;
    -webkit-animation-iteration-count: 1 !important;
    animation-iteration-count: 1 !important
  }
}

.ft-menu .hero-nav__item {
  width: 100%;
  margin-top: .75rem;
  margin-bottom: .75rem
}

@media (min-width:992px) {
  .ft-menu .hero-nav__item {
    width: auto;
    margin-top: 0;
    margin-bottom: 0
  }
}

.ft-menu--js-show {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
  -webkit-animation-duration: .5s;
  animation-duration: .5s
}

.ft-menu::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  background: var(--primary);
  opacity: .9;
  z-index: -1
}

@media (min-width:992px) {
  .ft-menu {
    -webkit-animation-name: none;
    animation-name: none;
    position: static;
    z-index: auto
  }

  .ft-menu::before {
    content: none
  }
}

.ft-menu__slider {
  --block-background: white;
  --block-text-color: var(--text-primary);
  color: var(--block-text-color);
  background: var(--block-background);
  width: 80%;
  height: 100%;
  overflow: hidden;
  transform: translateX(-100%);
  transition: .5s transform
}

@media (min-width:992px) {
  .ft-menu__slider {
    --block-background: transparent;
    --block-text-color: var(--block-text-color);
    width: auto;
    height: auto;
    background: 0 0;
    transform: none;
    display: flex;
    align-items: center
  }
}

.ft-menu--js-show .ft-menu__slider {
  transform: translateX(0)
}

.ft-menu__close-btn {
  color: var(--primary-invert);
  position: absolute;
  right: 0;
  top: 0;
  font-size: 2rem;
  margin: 1rem;
  transform: translateX(100%);
  transition: .5s transform
}

@media (min-width:992px) {
  .ft-menu__close-btn {
    display: none
  }
}

.ft-menu--js-show .ft-menu__close-btn {
  transform: translateX(0)
}

.ft-menu__close-btn:focus,
.ft-menu__close-btn:hover {
  color: var(--primary-invert)
}

@-webkit-keyframes fadeIn {
  from {
    visibility: hidden;
    opacity: 0
  }

  to {
    visibility: visible;
    opacity: 1
  }
}

@keyframes fadeIn {
  from {
    visibility: hidden;
    opacity: 0
  }

  to {
    visibility: visible;
    opacity: 1
  }
}

@-webkit-keyframes fadeOut {
  from {
    visibility: visible;
    opacity: 1
  }

  to {
    visibility: hidden;
    opacity: 0
  }
}

@keyframes fadeOut {
  from {
    visibility: visible;
    opacity: 1
  }

  to {
    visibility: hidden;
    opacity: 0
  }
}

.fixed-nav-container {
  height: var(--hero-nav-height)
}

.hero-nav--is-sticky {
  --block-background: white;
  color: var(--block-text-color);
  background: var(--block-background);
  position: fixed !important;
  left: 0;
  right: 0;
  margin: auto;
  box-shadow: 0 5px 20px rgba(0, 0, 0, .1);
  padding: 1rem !important;
  height: 60px;
  transition: .2s height;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: slideInDown;
  animation-name: slideInDown;
}

@media (min-width:992px) {
  .hero-nav--is-sticky {
    height: 80px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    padding: 1rem .7rem !important
  }
}

.ft-menu__slider {
  color: var(--block-text-color)
}

.hero-nav--is-sticky .ft-menu__slider {
  color: var(--text-primary)
}

.hero-nav--is-sticky .btn {
  background: var(--gradient-primary, var(--primary));
  color: var(--primary-invert)
}

@-webkit-keyframes slideInDown {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0)
  }
}

@keyframes slideInDown {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0)
  }
}

.ft-menu__slider .hero-nav__item {
  font-size: 1.1rem;
  padding: 0 1rem
}

@media (min-width:992px) {
  .ft-menu__slider .hero-nav__item {
    padding: 0
  }
}

.hero-nav__link {
  display: flex;
  align-items: center;
  outline: 0 !important
}

.ft-menu__slider {
  overflow-x: hidden;
  overflow-y: auto
}

@media (min-width:992px) {
  .ft-menu__slider {
    overflow: visible
  }
}

.hero-nav__item--with-dropdown {
  position: relative;
  cursor: pointer
}

@media (min-width:992px) {
  .hero-nav__item--with-dropdown::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 176%
  }
}

.hero-nav__dropdown {
  position: static;
  width: 100%;
  height: auto;
  font-size: .9rem;
  border-top: 1px solid rgba(0, 0, 0, .1);
  max-height: 0;
  overflow: hidden;
  visibility: hidden;
  opacity: 0;
  transition: .3s all;
  color: var(--text-primary);
  text-align: initial;
  cursor: auto
}

@media (min-width:992px) {
  .hero-nav__dropdown {
    position: absolute;
    top: 176%;
    left: 0;
    margin-top: 0;
    border-radius: 10px;
    border-top: none;
    box-shadow: 0 14px 50px 0 rgba(0, 0, 0, .1);
    background-color: #fff;
    z-index: 2;
    max-height: 0;
    padding: 2.3rem 3rem 2rem 2rem;
    overflow: visible;
    transition: .3s all
  }
}

.dropdown--important {
  position: absolute;
  width: auto !important;
  top: 176%;
  left: 0;
  margin-top: 0;
  border-radius: 10px;
  border-top: none;
  box-shadow: 0 14px 50px 0 rgba(0, 0, 0, .1);
  background-color: #fff;
  z-index: 2;
  max-height: 0;
  padding: 2rem;
  padding-right: 3rem;
  overflow: visible;
  transition: .3s all
}

@media (min-width:992px) {
  .dropdown--of-1-columns {
    width: 400px
  }

  .dropdown--of-2-columns {
    width: 700px
  }

  .dropdown--language-selector {
    width: 250px
  }
}

.hero-nav__item--show-dropdown .hero-nav__dropdown {
  margin-top: 1rem;
  visibility: visible;
  opacity: 1;
  max-height: 9999px;
  padding-top: 1rem
}

@media (min-width:992px) {
  .hero-nav__item--show-dropdown .hero-nav__dropdown {
    margin-top: 0;
    padding: 2.3rem 3rem 2rem 2rem
  }
}

.hero-nav__item-chevron {
  transition: .3s all
}

.hero-nav__item--show-dropdown .hero-nav__item-chevron {
  transform: rotate(180deg)
}

.hero-nav__item--dropdown-left .hero-nav__dropdown {
  transform: translateX(-15px) !important
}

.hero-nav__item--dropdown-left .hero-nav__dropdown::before {
  left: 15%;
  right: auto
}

.hero-nav__item--dropdown-right .hero-nav__dropdown {
  transform: translateX(15px) !important;
  left: auto;
  right: 0
}

.hero-nav__item--dropdown-right .hero-nav__dropdown::before {
  left: auto;
  right: 15%
}

@media (min-width:992px) {
  .hero-nav__item--lg-dropdown-left .hero-nav__dropdown {
    transform: translateX(-15px) !important;
    left: 0;
    right: auto
  }

  .hero-nav__item--lg-dropdown-left .hero-nav__dropdown::before {
    left: 15%;
    right: auto
  }

  .hero-nav__item--lg-dropdown-right .hero-nav__dropdown {
    transform: translateX(15px) !important;
    left: auto;
    right: 0
  }

  .hero-nav__item--lg-dropdown-right .hero-nav__dropdown::before {
    left: auto;
    right: 15%
  }
}

.dropdown--important::before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 6.85px 8.1px 6.85px;
  border-color: transparent transparent #fff transparent;
  position: absolute;
  top: -6px;
  left: 0;
  right: 0;
  margin: auto
}

@media (min-width:992px) {
  .hero-nav__dropdown::before {
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 6.85px 8.1px 6.85px;
    border-color: transparent transparent #fff transparent;
    position: absolute;
    top: -6px;
    left: 0;
    right: 0;
    margin: auto
  }
}

.dropdown__title {
  color: var(--text-primary);
  opacity: .7;
  font-weight: 600;
  font-size: .9rem;
  display: block;
  margin-top: .5rem;
  margin-bottom: 1.18rem
}

.dropdown__link {
  display: flex;
  align-items: flex-start;
  position: relative;
  cursor: pointer;
  margin-bottom: 1.3rem;
  color: inherit;
  text-decoration: none
}

.dropdown__link:focus,
.dropdown__link:hover {
  color: inherit;
  text-decoration: none
}

[javascript-language-selector] .dropdown__link {
  border-radius: .5rem;
  padding: .7rem;
  margin-bottom: 3px
}

.dropdown__link::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%
}

.dropdown__link:last-child {
  margin: 0
}

[javascript-language-selector] .dropdown__link--selected,
[javascript-language-selector] .dropdown__link:focus,
[javascript-language-selector] .dropdown__link:hover {
  background: rgba(0, 0, 0, .06)
}

.dropdown__icon {
  width: 35px;
  height: 35px;
  background: var(--gradient-primary, var(--primary));
  color: var(--primary-invert);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10rem;
  font-size: 13px
}

@media (min-width:992px) {
  .dropdown__icon {
    width: 40px;
    height: 40px
  }
}

.dropdown__item {
  max-width: 250px
}

.dropdown__item-title {
  font-size: .9rem;
  font-weight: 600;
  line-height: 1.5;
  position: relative;
  z-index: -1
}

@media (min-width:992px) {
  .dropdown__item-title {
    white-space: nowrap
  }
}

.dropdown__item-title::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 20%;
  width: 100%;
  background: var(--secondary);
  transform: translateY(2px);
  opacity: 0;
  transition: .2s
}

[javascript-language-selector] .dropdown__item-title {
  white-space: nowrap
}

[javascript-language-selector] .dropdown__item-title::before {
  display: none
}

.dropdown__link:focus .dropdown__item-title::before,
.dropdown__link:hover .dropdown__item-title::before {
  height: 30%;
  transform: translateY(0);
  opacity: .4
}

.dropdown__item-description {
  font-size: .9rem;
  opacity: .9;
  margin-top: .3rem;
  margin-bottom: 0
}

.dropdown__item-description,
.dropdown__item-title {
  width: 95%
}

.hero__row {
  height: 100%
}

.hero_empty-column {
  height: 100%
}

.hero__image-column {
  height: 100%;
  background-position: center;
  background-size: cover
}

.hero__content {
  text-align: initial
}

.hero__body {
  padding-top: 1rem;
  padding-bottom: 3rem;
  position: relative;
  z-index: 1
}

@media (min-width:992px) {
  .hero__body {
    padding-top: 0rem;
    padding-bottom: 5rem
  }
}

.hero__title {
  font-weight: 500;
  font-size: 2.5rem;
}

.hero__paragraph {
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1.7;
  opacity: .98
}

@media (min-width:576px) {
  .hero__title {
    font-size: 2.5rem;
    line-height: 1.17
  }

  .hero__paragraph {
    width: 80%;
    margin: auto
  }
}

@media (min-width:768px) {
  .hero__title {
    font-size: 3rem
  }

}

@media (min-width:992px) {
  .hero__title {
    font-size: 4.1rem;
    line-height: 1.17
  }

  .hero__paragraph {
    font-size: 1.4rem;
    width: 80%
  }
}

@media (min-width:1200px) {
  .hero__title {
    font-size: 4.1rem;
    line-height: 1.25
  }
}

.hero__btns-container {
  margin-left: -.5rem;
  margin-right: -.5rem
}

.hero__btns-container .btn {
  transform: scale(1.15);
  border-radius: var(--elements-roundness)
}

.mackbook-mockup-container {
  margin-bottom: 1rem;
  margin-top: 1rem
}

@media (min-width:992px) {
  .mackbook-mockup-container {
    margin-bottom: 1rem;
    margin-top: 0
  }
}

.mackbook-mockup {
  width: 100%;
  position: relative;
  transform: scale(1.15);
  z-index: 1
}

@media (min-width:992px) {
  .mackbook-mockup {
    transform: scale(1)
  }
}

.mackbook-mockup__img {
  height: auto;
  width: 100%;
  position: relative;
  z-index: 1
}

.mackbook-mockup__screenshot {
  position: absolute;
  z-index: 0;
  top: 7.5%;
  left: 14%;
  right: 0;
  width: 72%;
  height: 79.3%
}

.hero-9-dots-svg {
  color: var(--primary);
  position: absolute;
  z-index: 0
}

.hero-9-dots-svg--top-left {
  width: 90px;
  height: 90px;
  transform: translate(-1.5rem, -3rem);
  left: 0;
  top: 0
}

@media (min-width:992px) {
  .hero-9-dots-svg--top-left {
    width: 250px;
    height: 250px;
    transform: translate(4.4rem, -1.9rem)
  }
}

.hero-9-dots-svg--bottom-right {
  width: 150px;
  height: 150px;
  transform: translate(1.4rem, 1.4rem);
  right: 0;
  bottom: 0
}

@media (min-width:992px) {
  .hero-9-dots-svg--bottom-right {
    width: 300px;
    height: 300px;
    transform: translate(-3.5rem, 2.5rem)
  }
}

@media (min-width:1400px) {
  .hero__content {
    max-width: 80%
  }
}
/*------------------------------*/
/*--Section Name----------------*/
/*------------------------------*/
.block-12 {
  --block-background: white;
  --block-text-color: var(--text-primary);
  background: var(--block-background);
  color: var(--block-text-color);
  position: relative;
  z-index: 1
}

.block-12__shape-for-background {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 75%;
  background: linear-gradient(to top, rgba(0, 0, 0, .05) 0, transparent 70%);
  z-index: -1;
  clip-path: polygon(0 0, 100% 0, 100% 80%, 0 100%);
  overflow: hidden
}

.card-1 {
  height: 100%;
  padding: 3rem 2.8rem;
  padding-bottom: 5.8rem;
  border-radius: 5px;
  box-shadow: 0 10px 30px 0 rgba(0, 0, 0, .09);
  cursor: pointer;
  position: relative;
  z-index: 1;
  transition: .5s all;
  background: #fff;
  overflow: hidden
}

.card-1:focus,
.card-1:hover {
  box-shadow: 0 5px 50px 5px rgba(0, 0, 0, .09);
  transform: translateY(-5px) scale(1.02)
}

.card-1::after,
.card-1::before {
  content: '';
  position: absolute;
  width: 1px;
  height: 1px;
  background: rgb(255 255 255 / 19%);
  border-radius: 10rem;
  box-shadow: 0 0 115px 52px rgb(255 255 255 / 60%);
  z-index: -1;
  opacity: 0;
  transition: opacity 1s
}

.card-1::before {
  left: 0;
  bottom: 0;
  transform: translate(-50%, 50%)
}

.card-1::after {
  right: 0;
  top: 0;
  transform: translate(50%, -50%)
}

.card-1:hover::after,
.card-1:hover::before {
  opacity: 1
}

.card-1__title {
  font-size: 1.3rem;
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: .93rem
}

.card-1__paragraph {
  font-size: 14.4px;
  font-weight: 300;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.53;
  margin-bottom: 4.4rem
}

.card-1__button-container {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  transform: translateX(-10px);
  position: absolute;
  right: 0;
  bottom: 0
}

@media(min-width:992px) {
  .card-1__button-container {
    transform: translateX(-20px)
  }
}

.card-1__cta-text {
  font-size: 14px;
  font-weight: 400;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.71;
  letter-spacing: -.27px
}

.card-1__cta-icon {
  transition: transform .7s
}

.card-1:focus .card-1__cta-icon,
.card-1:hover .card-1__cta-icon {
  transform: translateX(5px)
}

.card-1__content {
  position: relative;
  padding-bottom: 1rem;
  height: 100%;
  z-index: 2
}

.card-1__shapes {
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: 0
}

.card-1__shapes img {
  width: 90px;
  height: 90px;
  transition: 1s all;
  transform: translate(35px, -49px);
  transform-origin: center
}

@media(min-width:992px) {
  .card-1__shapes img {
    width: 105px;
    height: 105px;
    transition: 1s all;
    transform: translate(39px, -48px);
    transform-origin: center
  }
}

.mb-2-1rem {
  margin-bottom: 2.1rem
}

/*------------------------------*/
/*--Section Name----------------*/
/*------------------------------*/

.backgroundcolor {
  background: linear-gradient(to right, #fef1e7, #ffffff);

}
/*------------------------------*/
/*--Section Name----------------*/
/*------------------------------*/
.block-31 {
  --block-background: #ffe5d9;
  --block-text-color: var(--text-primary);
  color: var(--block-text-color);
  overflow: hidden;
  position: relative;
  z-index: 1;

}

@media(min-width:992px) {
  .block-31__row {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    height: 100%
  }
}

.block-31__image-column {
  height: 300px;
  background-position: center;
  background-size: cover;
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.2), 0px 0px 10px rgba(255, 255, 255, 0.3);
  border-radius: 10px; /* Rounds corners */
}

@media(min-width:992px) {
  .block-31__image-column {
    height: auto;
    margin: 0 !important
  }
}

.block-31__li {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  line-height: 1.5
}

.block-31__li:last-child {
  margin-bottom: 0
}

.block-31__li-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  height: 2.5rem;
  width: 2.5rem;
  border-radius: 5px;
  background: rgba(0, 0, 0, .04);
  margin-bottom: 1.5rem
}

.block-31__li-paragraph {
  font-weight: 300
}

/*------------------------------*/
/*--Section Name----------------*/
/*------------------------------*/
.block-9 {
  --block-background: #E9EDC9;
  --block-text-color: var(--text-primary);
  background: var(--block-background);
  color: var(--block-text-color)
}

.card-3 {
  padding: 0 .5rem
}

@media (max-width:768px) {
  .card-3 {
    margin: 1rem
  }
}

.card-3__img-container {
  text-align: center;
  margin-bottom: 3.5rem;
  position: relative
}

.card-3__img {
  max-width: 100%;
  max-height: 200px;
  position: relative;
  z-index: 1
}

.card-3__title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1.5rem
}

.card-3__paragraph {
  font-size: 1rem;
  opacity: .95;
  line-height: 1.7
}

/*------------------------------*/
/*--Section Name----------------*/
/*------------------------------*/
.block-22 {
  --block-background: white;
  --block-text-color: var(--text-primary);
  background: var(--block-background);
  color: var(--block-text-color)
}

@media(min-width:992px) {
  .testimonial-card-3 {
    padding: 3rem
  }
}

.testimonial-card-3__paragraph {
  font-size: 1.1rem;
  opacity: .95;
  line-height: 1.7
}

@media(min-width:992px) {
  .testimonial-card-3__paragraph {
    width: 80%;
    margin: auto
  }
}

.testimonial-card-3__quote-svg {
  color: var(--primary);
  transform: scale(1.2)
}

.block-22-person__link {
  color: inherit;
  opacity: .7;
  text-decoration: underline
}

.block-22-person__link:focus,
.block-22-person__link:hover {
  color: inherit;
  text-decoration: underline;
  opacity: 1
}

/*------------------------------*/
/*--Section Name----------------*/
/*------------------------------*/
.block-26 {
  --block-background: white;
  --block-text-color: var(--text-primary);
  background: var(--block-background);
  color: var(--block-text-color);
  padding-top: 5.8rem;
  padding-bottom: 5.8rem
}

.block-26__title {
  font-size: 2.1rem;
  font-weight: 600
}

.block-26__heading {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: .5rem
}

.block-26__item {
  margin-bottom: .4rem
}

/*------------------------------*/
/*--Section Name----------------*/
/*------------------------------*/
.block-33 {
  --block-background: white;
  --block-text-color: var(--text-primary);
  background: var(--block-background);
  color: var(--block-text-color)
}

.block__header {
  margin-bottom: 4rem
}

.block__title {
  font-size: 2rem;
  font-weight: 900;
  line-height: 1.4
}

@media(min-width:992px) {
  .block__title {
    font-size: 2.5rem
  }
}

.block__paragraph {
  font-size: 1.1rem;
  line-height: 1.5;
  opacity: .9
}

.block-33__img-container {
  margin-top: 5rem;
  text-align: center
}

.block-33__img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 0 30px 0 rgba(0, 0, 0, .09)
}

/*------------------------------*/
/*--Section Name----------------*/
/*------------------------------*/
.block-44 {
  --block-background: white;
  --block-text-color: var(--text-primary);
  --text-primary: var(--block-text-color);
  color: var(--black);
  font-size: 1rem;
  text-align: center;
  padding: 5px;
}

@media(min-width:992px) {
  .block-44 {
    text-align: initial
  }
}

.block-44__logo-container {
  width: 100%;
  margin-bottom: 2.5rem
}

@media(min-width:992px) {
  .block-44__logo-container {
    width: auto;
    flex-grow: 1;
    margin-bottom: 0
  }
}

.block-44__logo {
  height: 100px;
  width: auto;
  margin: auto;
  display: block;
  max-width: 100%;
  max-height: 100px;
  object-fit: contain;
  object-position: center;
  transition: transform .3s ease-in-out
}

.block-44__list {
  display: flex;
  flex-wrap: wrap
}

.block-44__li-1 {
  margin-bottom: .6rem;
  margin: .9rem
}

.block-44__li-1::after {
  content: '';
  display: inline-block;
  width: 0
}

@media(min-width:992px) {
  .block-44__li-1 {
    margin: 0
  }

  .block-44__li-1::after {
    width: 2.8rem
  }

  .block-44__li-1:last-child::after {
    width: 0
  }
}

.block-44__link {
  color: var(--black);
  text-decoration: none
}

.block-44__link:focus,
.block-44__link:hover {
  color: inherit;
  text-decoration: underline
}

.block-44__divider {
  margin: 2.4rem 0;
}

.block-44__extra-links {
  justify-content: center
}

@media(min-width:768px) {
  .block-44__extra-links {
    justify-content: flex-start
  }
}

.block-44__copyrights {
  color: var(--text-primary);
  line-height: 1.7;
  font-size: .9rem
}


.block-28 a {
  color: var(--black) !important; /* Replace with your desired color */
}

.block-28 a:hover {
  color: var(--black); /* A slightly darker green for hover effect */
}
.block-44 a {
  color: var(--black) !important; /* Replace with your desired color */
}

.block-44 a:hover {
  color: var(--black); /* A slightly darker green for hover effect */
}


/*------------------------------*/
/*--Section Name----------------*/
/*------------------------------*/


.block-28 {
  --elements-roundness: 5px;
  --block-background: white;
  --block-text-color: var(--text-primary);
  color: var(--block-text-color);

}

@media(min-width:992px) {
  .block-28 {
  }
}

.block-28__content-side,
.block-28__form-side {
  padding-top: 5rem;
  padding-bottom: 5rem
}

.contact-form,
.contact-info {
  width: 90%;
  margin: auto
}

.contact-info {
  font-size: .9rem
}

.contact-form__title,
.contact-info__title {
  font-size: 2.2rem;
  font-weight: 600
}

.contact-info__paragraph {
  font-size: 1.2rem;
  opacity: .9;
  line-height: 1.7
}

.contact-info__title-2 {
  font-weight: 600
}

.contact-info__title-2 .contact-info__item {
  opacity: .9
}

.contact-form__paragraph {
  font-size: 1.2rem;
  opacity: .9;
  line-height: 1.7;
  width: 90%
}

.contact-form__input {
  color: var(--text-primary);
  font-size: .87rem;
  padding: .87rem 1.4rem;
  border-radius: 5px;
  border: 1px solid #e5e7eb;
  background: #fff;
  width: 100%;
  margin-bottom: .87rem
}

textarea.contact-form__input {
  height: 130px;
  resize: none
}

.contact-form__input:focus {
  border: 1px solid var(--primary);
  outline: 0;
  box-shadow: none
}

.btn--loading {
  opacity: 1;
  cursor: progress;
  position: relative;
  overflow: hidden;
  z-index: 1
}

.btn--loading::after,
.btn--loading::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0
}

.btn--loading::before {
  background: var(--primary);
  width: 100%;
  height: 100%;
  z-index: 1
}

@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0)
  }

  100% {
    -webkit-transform: rotate(360deg)
  }
}

@keyframes spin {
  0% {
    transform: rotate(0)
  }

  100% {
    transform: rotate(360deg)
  }
}

.btn--loading::after {
  margin: auto;
  border: 2px solid transparent;
  border-radius: 50%;
  border-top: 2px solid var(--primary-invert);
  width: 1.5rem;
  height: 1.5rem;
  -webkit-animation: spin .5s linear infinite;
  animation: spin .5s linear infinite;
  z-index: 2
}

.h-100 {
  height: 100% !important
}

/*------------------------------*/
/*--Section Name----------------*/
/*------------------------------*/
.block-29 {
  --space-between-blocks: 7rem;
}

.block-29__title {
  font-size: 2rem;
  font-weight: 900;
  line-height: 1.3
}

.block-29__paragraph {
  font-size: 1rem;
  line-height: 1.7;
  opacity: .9
}

.block-29__paragraph,
.block-29__title {
  text-align: center
}

@media (min-width:992px) {
  .block-29__title {
    font-size: 2.5rem
  }

  .block-29__paragraph,
  .block-29__title {
    text-align: initial
  }

  .block-29__paragraph {
    width: 90%
  }
}

.cta-input {
  display: inline-flex;
  justify-content: space-between;
  flex-wrap: wrap;
  font-size: .87rem;
  padding: .4rem;
  --elements-roundness: 3px;
  border-radius: var(--elements-roundness);
  background: #fff;
  border: 1px solid #e5e7eb
}

@media(min-width:768px) {
  .cta-input {
    flex-wrap: nowrap
  }
}

@media(min-width:992px) {
  .cta-input {
    --elements-roundness: 10rem
  }
}

.cta-input__input {
  border: none;
  background: 0 0;
  padding: .8rem 1.5rem
}

@media(min-width:992px) {
  .cta-input__input {
    max-width: 60%
  }
}

.cta-input__input:focus {
  border: none;
  outline: 0;
  box-shadow: none
}

.cta-input__btn {
  width: 100%;
  font-size: .87rem;
  padding: .8rem 2.5rem;
  color: var(--primary-invert);
  background: var(--gradient-primary, --secondary);
  border-radius: var(--elements-roundness)
}

@media(min-width:768px) {
  .cta-input__btn {
    width: auto
  }
}

.cta-p {
  text-align: center;
  font-size: .92rem;
  font-weight: 300;
  margin-top: 10px
}

@media(min-width:992px) {
  .cta-p {
    text-align: initial
  }
}

.btn--loading {
  opacity: 1;
  cursor: progress;
  position: relative;
  overflow: hidden;
  z-index: 1
}

.btn--loading::after,
.btn--loading::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0
}

.btn--loading::before {
  background: var(--primary);
  width: 100%;
  height: 100%;
  z-index: 1
}

@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0)
  }

  100% {
    -webkit-transform: rotate(360deg)
  }
}

@keyframes spin {
  0% {
    transform: rotate(0)
  }

  100% {
    transform: rotate(360deg)
  }
}

.btn--loading::after {
  margin: auto;
  border: 2px solid transparent;
  border-radius: 50%;
  border-top: 2px solid var(--primary-invert);
  width: 1.5rem;
  height: 1.5rem;
  -webkit-animation: spin .5s linear infinite;
  animation: spin .5s linear infinite;
  z-index: 2
}

.background-section {
  position: relative; /* Ensure the overlay works */
  background-image: url('/images/watercoloropacity.png'); /* Replace with your image URL */
  background-size: cover; /* Cover the entire area */
  background-position: center; /* Center the image */
  background-repeat: no-repeat; /* Prevent the image from repeating */
}

/*
.background-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); 
  z-index: 1;
}
*/

.background-section .container {
  position: relative;
  z-index: 2; /* Ensures content stays on top of the overlay */
}

/* Responsive adjustments */
@media (max-width: 1200px) {
  .background-section {
    padding: 60px 0; /* Reduced padding for medium screens */
  }
}

@media (max-width: 992px) {
  .background-section {
    padding: 40px 0; /* Reduced padding for smaller screens */
  }

  .background-section .block__title {
    font-size: 1.8rem; /* Adjust title font size */
  }

  .background-section .block__paragraph {
    font-size: 1rem; /* Adjust paragraph font size */
  }
}

@media (max-width: 768px) {
  .background-section {
    padding: 30px 0; /* Even smaller padding for mobile */
  }

  .background-section .block__title {
    font-size: 1.5rem; /* Adjust title font size for small screens */
  }

  .background-section .block__paragraph {
    font-size: 0.9rem; /* Adjust paragraph font size for small screens */
  }
}


/*------------------------------*/
/*--Section Name----------------*/
/*------------------------------*/
.block-7 {
  --block-background: white;
  --block-text-color: var(--text-primary);
  background: var(--block-background);
  color: var(--block-text-color)
}

.block__header {
  margin-bottom: 4rem
}

.block__pre-title {
  color: var(--primary);
  font-size: 1rem;
  font-weight: 600
}

.block__title {
  font-size: 2rem;
  font-weight: 900;
  line-height: 1.4
}

@media (min-width:992px) {
  .block__title {
    font-size: 2.5rem
  }
}

.block__paragraph {
  font-size: 1.1rem;
  line-height: 1.5;
  opacity: .9
}

.card-2 {
  margin-bottom: 2.1rem
}

.card-2:last-child {
  margin-bottom: 0
}

.card-2__title {
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.46
}

.card-2__paragraph {
  font-size: 1rem;
  line-height: 1.6;
  opacity: .95;
  margin: 0
}

.services-hero {
  --block-background: url('/images/watercolorbackground.jpg'); /* Replace with your image path */
  --block-text-color: var(--text-primary);
  background: var(--block-background) no-repeat center center;
  background-size: cover;
  color: var(--block-text-color);
  position: relative;
  display: flex;
  flex-direction: column;
}

.services-hero__title {
  font-size: 2.5rem;
  font-weight: 700;
}

.services-hero__paragraph {
  font-size: 1.2rem;
}

.services-hero__btns-container .services-hero__btn {
  padding: 0.8rem 1.5rem;
  font-size: 1rem;
}


/*------------------------------*/
/*--Section Name----------------*/
/*------------------------------*/
.article-block {
  --block-background: white;
  --block-text-color: var(--text-primary);
  background: var(--block-background);
  color: var(--block-text-color)
}

.article-block__title {
  font-size: 2.1rem;
  font-weight: 600;
  line-height: 1.5
}

.article-block__info {
  opacity: .95;
  font-size: .9rem;
  margin: 0
}

.article-block__author {
  color: inherit;
  position: relative;
  padding-right: 13px;
  margin-right: 13px
}

.article-block__author:focus,
.article-block__author:hover {
  color: inherit;
  text-decoration: underline
}

.article-block__author::after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  height: 90%;
  margin: auto;
  width: 3px;
  transform: rotate(10deg);
  background: var(--primary)
}

.article-block__header-img {
  width: 100%;
  border-radius: 10px;
  filter: drop-shadow(0 10px 8px rgba(0, 0, 0, .1))
}

.article h2,
.article h3,
.article h4,
.article h5,
.article h6 {
  font-weight: 600;
  line-height: 1.5;
  margin-top: 2.5rem;
  margin-bottom: 2.5rem
}

.article-container__title {
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.5;
  margin: 0
}

.article {
  padding: 0 1.5rem
}

.article p {
  line-height: 2.1;
  margin-bottom: 1rem
}

@media (min-width:992px) {
  .article {
    padding-left: 3rem;
    padding-right: 3rem
  }
}

.article img,
.article video {
  width: 100%
}

pre {
  background: #333;
  color: #fff;
  padding: 1rem;
  border-radius: 5px
}

ol,
ul {
  line-height: 2
}

blockquote {
  margin: 0 0 1rem;
  padding: 1rem 1rem 1px 1rem;
  background: rgba(0, 0, 0, .02);
  font-style: italic;
  margin-top: 2rem;
  border-left: 2px solid rgba(0, 0, 0, .1)
}

/*------------------------------*/
/*--Section Name----------------*/
/*------------------------------*/



.pattern {
  position: absolute;
  height: 47%;
  width: 11%
}

.pattern--primary {
  color: var(--primary)
}

.pattern--left-bottom {
  bottom: 0;
  left: 0
}

.pattern--right {
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto
}


/*------------------------------*/
/*--Section Name----------------*/
/*------------------------------*/
.block-61 {
  --block-background: white;
  --block-text-color: var(--text-primary);
  color: var(--block-text-color);
  background-color: #ffffff;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 56 28' width='56' height='28'%3E%3Cpath fill='%23fef1dc' fill-opacity='0.4' d='M56 26v2h-7.75c2.3-1.27 4.94-2 7.75-2zm-26 2a2 2 0 1 0-4 0h-4.09A25.98 25.98 0 0 0 0 16v-2c.67 0 1.34.02 2 .07V14a2 2 0 0 0-2-2v-2a4 4 0 0 1 3.98 3.6 28.09 28.09 0 0 1 2.8-3.86A8 8 0 0 0 0 6V4a9.99 9.99 0 0 1 8.17 4.23c.94-.95 1.96-1.83 3.03-2.63A13.98 13.98 0 0 0 0 0h7.75c2 1.1 3.73 2.63 5.1 4.45 1.12-.72 2.3-1.37 3.53-1.93A20.1 20.1 0 0 0 14.28 0h2.7c.45.56.88 1.14 1.29 1.74 1.3-.48 2.63-.87 4-1.15-.11-.2-.23-.4-.36-.59H26v.07a28.4 28.4 0 0 1 4 0V0h4.09l-.37.59c1.38.28 2.72.67 4.01 1.15.4-.6.84-1.18 1.3-1.74h2.69a20.1 20.1 0 0 0-2.1 2.52c1.23.56 2.41 1.2 3.54 1.93A16.08 16.08 0 0 1 48.25 0H56c-4.58 0-8.65 2.2-11.2 5.6 1.07.8 2.09 1.68 3.03 2.63A9.99 9.99 0 0 1 56 4v2a8 8 0 0 0-6.77 3.74c1.03 1.2 1.97 2.5 2.79 3.86A4 4 0 0 1 56 10v2a2 2 0 0 0-2 2.07 28.4 28.4 0 0 1 2-.07v2c-9.2 0-17.3 4.78-21.91 12H30zM7.75 28H0v-2c2.81 0 5.46.73 7.75 2zM56 20v2c-5.6 0-10.65 2.3-14.28 6h-2.7c4.04-4.89 10.15-8 16.98-8zm-39.03 8h-2.69C10.65 24.3 5.6 22 0 22v-2c6.83 0 12.94 3.11 16.97 8zm15.01-.4a28.09 28.09 0 0 1 2.8-3.86 8 8 0 0 0-13.55 0c1.03 1.2 1.97 2.5 2.79 3.86a4 4 0 0 1 7.96 0zm14.29-11.86c1.3-.48 2.63-.87 4-1.15a25.99 25.99 0 0 0-44.55 0c1.38.28 2.72.67 4.01 1.15a21.98 21.98 0 0 1 36.54 0zm-5.43 2.71c1.13-.72 2.3-1.37 3.54-1.93a19.98 19.98 0 0 0-32.76 0c1.23.56 2.41 1.2 3.54 1.93a15.98 15.98 0 0 1 25.68 0zm-4.67 3.78c.94-.95 1.96-1.83 3.03-2.63a13.98 13.98 0 0 0-22.4 0c1.07.8 2.09 1.68 3.03 2.63a9.99 9.99 0 0 1 16.34 0z'%3E%3C/path%3E%3C/svg%3E");
}

.testimonial-card-1 {
  padding: 3rem 2.2rem 2.2rem 2.2rem;
  border-radius: 5px;
  position: relative;
  background: var(--block-background);
  box-shadow: 0 0 30px 0 rgba(0, 0, 0, .09);
  display: flex;
  flex-direction: column;
  height: 100%
}

.testimonial-card-1__paragraph {
  font-size: .95rem;
  opacity: .9;
  line-height: 1.7;
  flex-grow: 1;
  padding-bottom: 1.5rem
}

.testimonial-card-1__quote-symbol {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: var(--gradient-primary, --primary);
  color: var(--primary-invert);
  font-size: 1.3rem;
  border-radius: 10rem;
  position: absolute;
  top: -25px;
  left: 30px
}

.block-61-person {
  display: flex;
  align-items: center;
  margin-top: -1rem
}

.block-61-person__avatar {
  width: 56px;
  height: 56px;
  border-radius: 10rem
}

.block-61-person__rating {
  font-size: .75rem;
  color: #ffe200
}

.block-61-person__name {
  font-size: .87rem;
  font-weight: 600
}

.block-61-person__info {
  font-size: .87rem;
  opacity: .8
}




/*------------------------------*/
/*--Section Name----------------*/
/*------------------------------*/
.block-2 {
  --block-background: white;
  --block-text-color: var(--text-primary);
  background: var(--block-background);
  color: var(--block-text-color)
}

.card-2 {
  padding: 1.5rem;
  margin-bottom: 1rem;
  border-radius: 5px;
  background: rgba(255, 255, 255, .05);
  box-shadow: 0 0 30px 0 rgba(0, 0, 0, .09)
}

@media (min-width:992px) {
  .card-2 {
    padding: 2.5rem
  }
}

.card-2__title {
  font-size: 1.3rem;
  font-weight: 600;
  line-height: 1.46
}

@media (min-width:992px) {
  .card-2__title {
    font-size: 1.5rem
  }
}

.card-2__paragraph {
  font-size: 1rem;
  line-height: 1.6;
  opacity: .95;
  margin: 0
}

.block-2__dots-svg--left {
  color: var(--primary);
  top: 0;
  width: 250px;
  height: 100px;
  position: absolute;
  transform: translate(-15rem, 2rem) rotate(90deg);
  z-index: 2
}

.block-2__dots-svg--right {
  color: var(--primary);
  bottom: 0;
  right: 0;
  width: 250px;
  height: 100px;
  position: absolute;
  transform: translate(14.5rem, -8rem) rotate(90deg);
  z-index: 2
}

@media (min-width:1400px) {
  .block-2__dots-svg--left {
    transform: translate(-13rem, 2rem) rotate(90deg)
  }

  .block-2__dots-svg--right {
    transform: translate(10rem, -8rem) rotate(90deg)
  }
}


/* ===== Buttons Css ===== */
.contact-form .single-form .input-form .primary-btn {
  background: var(--primary);
  color: var(--white);
  box-shadow: var(--shadow-2);
}
.contact-form .single-form .input-form .active.primary-btn, .contact-form .single-form .input-form .primary-btn:hover, .contact-form .single-form .input-form .primary-btn:focus {
  background: var(--primary-dark);
  color: var(--white);
  box-shadow: var(--shadow-4);
}
.contact-form .single-form .input-form .deactive.primary-btn {
  background: var(--gray-4);
  color: var(--dark-3);
  pointer-events: none;
}

/*===========================
    contact-01 css 
===========================*/
.contact-area {
  padding-top: 50px;
  padding-bottom: 100px;
}
.contact-area .mt-15 {
  margin-top: 15px;
}
.contact-area .section-title .title {
  font-size: 28px;
  font-weight: 600;
  line-height: 55px;
}
@media (max-width: 767px) {
  .contact-area .section-title .title {
    font-size: 24px;
    line-height: 35px;
  }
}

.contact-form .single-form label {
  font-size: 12px;
  color: var(--dark-2);
  line-height: 18px;
  margin-left: 44px;
}
.contact-form .single-form .input-form {
  position: relative;
}
.contact-form .single-form .input-form i {
  font-size: 24px;
  position: absolute;
  top: 10px;
  left: 10px;
  color: var(--dark-3);
}
.contact-form .single-form .input-form textarea, .contact-form .single-form .input-form input {
  width: 100%;
  height: 44px;
  padding-left: 45px;
  padding-right: 30px;
  color: var(--dark-3);
  font-size: 16px;
  border: 0;
  border-bottom: 1px solid var(--gray-4);
  font-weight: 500;
}
.contact-form .single-form .input-form textarea::placeholder, .contact-form .single-form .input-form input::placeholder {
  opacity: 1;
  color: var(--dark-3);
}
.contact-form .single-form .input-form textarea {
  padding-top: 10px;
}
.form-input .help-block {
  margin-top: 2px;
}
.form-input .help-block .list-unstyled li {
  font-size: 12px;
  line-height: 16px;
  color: var(--error);
}
.form-input label {
  font-size: 12px;
  line-height: 18px;
  color: var(--dark-3);
  margin-bottom: 8px;
  display: inline-block;
}
.form-input .input-items {
  position: relative;
}
.form-input .input-items input, .form-input .input-items textarea {
  width: 100%;
  height: 44px;
  border: 2px solid;
  padding-left: 44px;
  padding-right: 12px;
  position: relative;
  font-size: 16px;
}
.form-input .input-items textarea {
  padding-top: 8px;
  height: 130px;
  resize: none;
}
.form-input .input-items i {
  position: absolute;
  top: 11px;
  left: 13px;
  font-size: 20px;
  z-index: 9;
}
.form-input .input-items.default input, .form-input .input-items.default textarea {
  border-color: var(--gray-4);
  color: var(--dark-3);
}
.form-input .input-items.default input:focus, .form-input .input-items.default textarea:focus {
  border-color: var(--primary);
}
.form-input .input-items.default input::placeholder, .form-input .input-items.default textarea::placeholder {
  color: var(--dark-3);
  opacity: 1;
}
.form-input .input-items.default i {
  color: var(--dark-3);
}
.form-input .input-items.active input, .form-input .input-items.active textarea {
  border-color: var(--primary-dark);
  color: var(--black);
}
.form-input .input-items.active input::placeholder, .form-input .input-items.active textarea::placeholder {
  color: var(--black);
  opacity: 1;
}
.form-input .input-items.active i {
  color: var(--primary-dark);
}
.form-input .input-items.error input, .form-input .input-items.error textarea {
  border-color: var(--error);
  color: var(--error);
}
.form-input .input-items.error input::placeholder, .form-input .input-items.error textarea::placeholder {
  color: var(--error);
  opacity: 1;
}
.form-input .input-items.error i {
  color: var(--error);
}
.form-input .input-items.success input, .form-input .input-items.success textarea {
  border-color: var(--success);
  color: var(--success);
}
.form-input .input-items.success input::placeholder, .form-input .input-items.success textarea::placeholder {
  color: var(--success);
  opacity: 1;
}
.form-input .input-items.success i {
  color: var(--success);
}
.form-input .input-items.disabled input, .form-input .input-items.disabled textarea {
  border-color: var(--dark-2);
  color: var(--dark-3);
  background: none;
}
.form-input .input-items.disabled input::placeholder, .form-input .input-items.disabled textarea::placeholder {
  color: var(--dark-3);
  opacity: 1;
}
.form-input .input-items.disabled i {
  color: var(--dark-3);
}

.form-style-four .form-input label {
  padding-left: 44px;
  margin-bottom: 0;
}
.form-style-four .form-input .input-items input, .form-style-four .form-input .input-items textarea {
  border-top: 0;
  border-left: 0;
  border-right: 0;
}

.contact-info ul li .single-info {
  position: relative;
  margin-top: 19px;
}
.contact-info ul li .single-info .info-icon {
  position: absolute;
  top: 0;
  left: 0;
}
.contact-info ul li .single-info .info-icon i {
  color: var(--dark-3);
  font-size: 18px;
  line-height: 24px;
}
.contact-info ul li .single-info .info-content {
  padding-left: 30px;
}
.contact-info ul li .single-info .info-content .text {
  font-size: 16px;
  line-height: 24px;
  color: var(--dark-3);
  font-weight: 500;
}
.contact-info .social li {
  display: inline-block;
  margin-right: 12px;
}
.contact-info .social li a {
  font-size: 20px;
  height: 40px;
  width: 40px;
  line-height: 38px;
  border: 1px solid rgba(0, 0, 0, 0.096);
  text-align: center;
  border-radius: 5px;
  color: var(--dark-3);
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.contact-info .social li a:hover {
  color: var(--white);
  background-color: var(--primary);
  border-color: transparent;
}



.custom-shape-divider-top-1732668089 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.custom-shape-divider-top-1732668089 svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 150px;
}

.custom-shape-divider-top-1732668089 .shape-fill {
  fill: #FFFFFF;
}

.clipped-div {
  position: relative;
  width: 100%;
  background: linear-gradient(to right, #fef1e7, #ffffff);
  clip-path: polygon(0% 0%, 100% 0%, 100% 70%, 0% 100%);
  overflow: hidden; /* Ensures content inside doesn't overflow */
}


/* ===== Buttons Css ===== */
.features-nine .primary-btn {
  background: var(--primary);
  color: var(--white);
  box-shadow: var(--shadow-2);
}
.features-nine .active.primary-btn, .features-nine .primary-btn:hover, .features-nine .primary-btn:focus {
  background: var(--primary-dark);
  color: var(--white);
  box-shadow: var(--shadow-4);
}
.features-nine .deactive.primary-btn {
  background: var(--gray-4);
  color: var(--primary-invert);
  pointer-events: none;
}

.features-nine .primary-btn-outline {
  border-color: var(--primary);
  color: var(--primary);
}
.features-nine .active.primary-btn-outline, .features-nine .primary-btn-outline:hover, .features-nine .primary-btn-outline:focus {
  background: var(--primary-dark);
  color: var(--white);
}
.features-nine .deactive.primary-btn-outline {
  color: var(--dark-3);
  border-color: var(--gray-4);
  pointer-events: none;
}

.primary-btn.deactive {
  background: var(--gray-4);
  color: var(--primary-invert);
  pointer-events: none;
}


/*===========================
  services css 
===========================*/
.services-one {
  position: relative;
  background-color: var(--light-2);
  padding-top: 120px;
  padding-bottom: 120px;
}
.services-one .section-title {
  padding-bottom: 10px;
}
.services-one .section-title .title {
  font-size: 45px;
  font-weight: 600;
  line-height: 55px;
  color: var(--black);
  margin-bottom: 16px;
}
@media (max-width: 767px) {
  .services-one .section-title .title {
    font-size: 30px;
    line-height: 40px;
  }
}
.services-one .section-title p {
  color: var(--dark-3);
}
.services-one .services-content {
  margin-top: 40px;
  display: inline-block;
}
.services-one .services-content .services-icon {
  height: 80px;
  width: 80px;
  line-height: 80px;
  text-align: center;
  border-radius: 12px;
  background-color: var(--primary);
  color: var(--white);
  font-size: 35px;
  float: left;
  margin-right: 20px;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.services-one .services-content:hover .services-icon {
  background-color: var(--primary-dark);
  color: var(--white);
}
.services-one .services-content .media-body {
  padding-left: 100px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .services-one .services-content .media-body {
    padding-right: 10px;
  }
}
@media (max-width: 767px) {
  .services-one .services-content .media-body {
    padding-left: 0;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .services-one .services-content .media-body {
    padding-left: 0px;
    padding-top: 0;
  }
}
.services-one .services-content .media-body .services-title {
  font-size: 24px;
  font-weight: 600;
  line-height: 30px;
  color: var(--black);
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .services-one .services-content .media-body .services-title {
    font-size: 22px;
  }
}
.services-one .services-content .media-body .text {
  color: var(--dark-3);
  margin-top: 8px;
}
.services-one .services-image {
  position: absolute;
  width: 40%;
  height: 100%;
  top: 0;
  right: 0;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .services-one .services-image {
    width: 35%;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .services-one .services-image {
    width: 34%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .services-one .services-image {
    position: relative;
    width: 720px;
    margin: 0 auto;
  }
}
@media (max-width: 767px) {
  .services-one .services-image {
    position: relative;
    width: 100%;
    padding-left: 15px;
    padding-right: 16px;
    margin: 0 auto;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .services-one .services-image {
    position: relative;
    width: 540px;
    margin: 0 auto;
  }
}
.services-one .services-image .image {
  max-width: 400px;
  width: 100%;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .services-one .services-image .image {
    margin: 0 auto;
    padding-top: 50px;
  }
}
@media (max-width: 767px) {
  .services-one .services-image .image {
    margin: 0 auto;
    padding-top: 50px;
  }
}
.services-one .services-image .image img {
  width: 100%;
}


/*===========================
  features css 
===========================*/
.features-nine {
  margin-bottom: 100px;
  background-color: white;
  
  
}
.features-nine .features-items {
  padding-top: 70px;
  
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .features-nine .features-items {
    padding-top: 40px;
  }
}
@media (max-width: 767px) {
  .features-nine .features-items {
    padding-top: 20px;
  }
}
.features-nine .features-title {
  margin-top: 50px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .features-nine .features-title {
    margin-top: 30px;
  }
}
@media (max-width: 767px) {
  .features-nine .features-title {
    margin-top: 20px;
  }
}
.features-nine .sub-title {
  color: var(--primary);
}
.features-nine .main-title {
  font-weight: 700;
  margin-top: 10px;
}
@media (max-width: 767px) {
  .features-nine .main-title {
    font-size: 28px;
    line-height: 36px;
  }
}
.features-nine .text-lg {
  margin-top: 19px;
}
.features-nine .features-image {
  margin-top: 50px;
}
.features-nine .features-image img {
  width: 100%;
  border-radius: 8px;
}
.features-nine .feature-btn {
  margin-top: 32px;
  color: var(--primary-invert);
}


/* ===== Buttons Css ===== */
.about-eight .content .light-rounded-buttons .primary-btn-outline {
  border-color: var(--primary);
  color: var(--primary);
}
.about-eight .content .light-rounded-buttons .active.primary-btn-outline, .about-eight .content .light-rounded-buttons .primary-btn-outline:hover, .about-eight .content .light-rounded-buttons .primary-btn-outline:focus {
  background: var(--primary-dark);
  color: var(--white);
}
.about-eight .content .light-rounded-buttons .deactive.primary-btn-outline {
  color: var(--dark-3);
  border-color: var(--gray-4);
  pointer-events: none;
}

/*======================================
  About Eight CSS
========================================*/
.about-eight {
  position: relative;
  background-color: var(--light-2);
  z-index: 2;
  padding-top: 120px;
  padding-bottom: 90px;
}

.about-eight img {
  width: 100%;
  border-radius: 15px;
}
.about-eight .section-title-two {
  text-align: center;
  max-width: 550px;
  margin: auto;
  margin-bottom: 50px;
  position: relative;
  z-index: 5;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .about-eight .section-title-two {
    margin-bottom: 40px;
  }
}
@media (max-width: 767px) {
  .about-eight .section-title-two {
    margin-bottom: 30px;
  }
}
.about-eight .section-title-two span {
  text-transform: capitalize;
  color: var(--white);
  background: var(--primary);
  display: inline-block;
  margin-bottom: 10px;
  padding: 5px 15px;
  border-radius: 4px;
}
.about-eight .section-title-two h2 {
  margin-bottom: 15px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .about-eight .section-title-two h2 {
    font-size: 2rem;
    line-height: 2.8rem;
  }
}
@media (max-width: 767px) {
  .about-eight .section-title-two h2 {
    font-size: 1.5rem;
    line-height: 1.9rem;
  }
}
.about-eight .section-title-two p {
  color: var(--dark-3);
}
.about-eight .content {
  text-align: left;
}
.about-eight .content .icon {
  height: 70px;
  width: 70px;
  line-height: 70px;
  text-align: center;
  display: block;
  background: var(--primary);
  color: var(--white);
  border-radius: 10px;
  font-size: 30px;
  margin-bottom: 30px;
}
.about-eight .content p {
  margin: 20px 0;
  color: var(--dark-3);
}
.about-eight .content .light-rounded-buttons {
  padding-top: 20px;
}

/*===========================
  services css 
===========================*/
.services-four {
  position: relative;
  background-color: var(--light-2);
  padding-top: 120px;
  padding-bottom: 120px;
  
  /* Section Title Six */
}
.services-four .section-title-six {
  text-align: center;
  max-width: 550px;
  margin: auto;
  margin-bottom: 50px;
  position: relative;
  z-index: 5;

}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .services-four .section-title-six {
    margin-bottom: 45px;
  }
}
@media (max-width: 767px) {
  .services-four .section-title-six {
    margin-bottom: 35px;
  }
}
.services-four .section-title-six h3 {
  font-size: 16px;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 20px;
  color: var(--primary);
  text-transform: capitalize;
  position: relative;
  line-height: 14px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .services-four .section-title-six h3 {
    font-size: 15px;
    margin-bottom: 16px;
  }
}
@media (max-width: 767px) {
  .services-four .section-title-six h3 {
    font-size: 15px;
    margin-bottom: 14px;
  }
}
.services-four .section-title-six h3::before {
  position: absolute;
  content: "";
  left: -25px;
  top: 50%;
  transform: translateY(-50%);
  height: 2px;
  width: 15px;
  background-color: var(--primary);
  border-radius: 8px;
}
.services-four .section-title-six h3::after {
  position: absolute;
  content: "";
  right: -25px;
  top: 50%;
  transform: translateY(-50%);
  height: 2px;
  width: 15px;
  background-color: var(--primary);
  border-radius: 8px;
}
.services-four .section-title-six h2 {
  margin-bottom: 15px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .services-four .section-title-six h2 {
    font-size: 2rem;
    line-height: 2.8rem;
  }
}
@media (max-width: 767px) {
  .services-four .section-title-six h2 {
    font-size: 1.5rem;
    line-height: 1.9rem;
  }
}
.services-four .section-title-six p {
  color: var(--dark-3);
}
.services-four .services-image {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .services-four .services-image {
    position: relative;
    max-width: 690px;
    width: 100%;
    margin: 50px auto 0;
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media (max-width: 767px) {
  .services-four .services-image {
    position: relative;
    max-width: 100%;
    width: 100%;
    margin: 50px auto 0;
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .services-four .services-image {
    max-width: 540px;
  }
}
.services-four .services-image .image {
  max-width: 720px;
  margin-right: auto;
}
.services-four .services-image .image img {
  width: 100%;
}
.services-four .single-services {
  margin-top: 50px;
  text-align: center;
  
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  background-color: rgba(255, 255, 255, 0.75);
  border-radius: 12px;
  border: 1px solid rgba(209, 213, 219, 0.3);
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 1400px) {
  .services-four .single-services {
    padding: 0 20px;
  }
}
.services-four .single-services .services-icon {
  position: relative;
  display: inline-block;
  height: 65px;
  width: 65px;
  line-height: 65px;
  text-align: center;
  border-radius: 8px;
  font-size: 32px;
  color: var(--white);
  background-color: var(--primary);
  z-index: 0;
}
.services-four .single-services .services-content {
  margin-top: 25px;
}
.services-four .single-services .services-content .services-title {
  color: var(--black);
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-weight: 600;
  font-size: 24px;
}
.services-four .single-services .services-content .text {
  color: var(--dark-3);
  margin-top: 10px;
}

/* ===== Buttons Css ===== */
.contact-form .single-form .input-form .primary-btn {
  background: var(--primary);
  color: var(--white);
  box-shadow: var(--shadow-2);
}
.contact-form .single-form .input-form .active.primary-btn, .contact-form .single-form .input-form .primary-btn:hover, .contact-form .single-form .input-form .primary-btn:focus {
  background: var(--primary-dark);
  color: var(--white);
  box-shadow: var(--shadow-4);
}
.contact-form .single-form .input-form .deactive.primary-btn {
  background: var(--gray-4);
  color: var(--dark-3);
  pointer-events: none;
}

/*===========================
    contact-01 css 
===========================*/
.contact-area {
  padding-top: 50px;
  padding-bottom: 100px;
}
.contact-area .mt-15 {
  margin-top: 15px;
}
.contact-area .section-title .title {
  font-size: 28px;
  font-weight: 600;
  line-height: 55px;
}
@media (max-width: 767px) {
  .contact-area .section-title .title {
    font-size: 24px;
    line-height: 35px;
  }
}

.contact-form .single-form label {
  font-size: 12px;
  color: var(--dark-2);
  line-height: 18px;
  margin-left: 44px;
}
.contact-form .single-form .input-form {
  position: relative;
}
.contact-form .single-form .input-form i {
  font-size: 24px;
  position: absolute;
  top: 10px;
  left: 10px;
  color: var(--dark-3);
}
.contact-form .single-form .input-form textarea, .contact-form .single-form .input-form input {
  width: 100%;
  height: 44px;
  padding-left: 45px;
  padding-right: 30px;
  color: var(--dark-3);
  font-size: 16px;
  border: 0;
  border-bottom: 1px solid var(--gray-4);
  font-weight: 500;
}
.contact-form .single-form .input-form textarea::placeholder, .contact-form .single-form .input-form input::placeholder {
  opacity: 1;
  color: var(--dark-3);
}
.contact-form .single-form .input-form textarea {
  padding-top: 10px;
}
.form-input .help-block {
  margin-top: 2px;
}
.form-input .help-block .list-unstyled li {
  font-size: 12px;
  line-height: 16px;
  color: var(--error);
}
.form-input label {
  font-size: 12px;
  line-height: 18px;
  color: var(--dark-3);
  margin-bottom: 8px;
  display: inline-block;
}
.form-input .input-items {
  position: relative;
}
.form-input .input-items input, .form-input .input-items textarea {
  width: 100%;
  height: 44px;
  border: 2px solid;
  padding-left: 44px;
  padding-right: 12px;
  position: relative;
  font-size: 16px;
}
.form-input .input-items textarea {
  padding-top: 8px;
  height: 130px;
  resize: none;
}
.form-input .input-items i {
  position: absolute;
  top: 11px;
  left: 13px;
  font-size: 20px;
  z-index: 9;
}
.form-input .input-items.default input, .form-input .input-items.default textarea {
  border-color: var(--gray-4);
  color: var(--dark-3);
}
.form-input .input-items.default input:focus, .form-input .input-items.default textarea:focus {
  border-color: var(--primary);
}
.form-input .input-items.default input::placeholder, .form-input .input-items.default textarea::placeholder {
  color: var(--dark-3);
  opacity: 1;
}
.form-input .input-items.default i {
  color: var(--dark-3);
}
.form-input .input-items.active input, .form-input .input-items.active textarea {
  border-color: var(--primary-dark);
  color: var(--black);
}
.form-input .input-items.active input::placeholder, .form-input .input-items.active textarea::placeholder {
  color: var(--black);
  opacity: 1;
}
.form-input .input-items.active i {
  color: var(--primary-dark);
}
.form-input .input-items.error input, .form-input .input-items.error textarea {
  border-color: var(--error);
  color: var(--error);
}
.form-input .input-items.error input::placeholder, .form-input .input-items.error textarea::placeholder {
  color: var(--error);
  opacity: 1;
}
.form-input .input-items.error i {
  color: var(--error);
}
.form-input .input-items.success input, .form-input .input-items.success textarea {
  border-color: var(--success);
  color: var(--success);
}
.form-input .input-items.success input::placeholder, .form-input .input-items.success textarea::placeholder {
  color: var(--success);
  opacity: 1;
}
.form-input .input-items.success i {
  color: var(--success);
}
.form-input .input-items.disabled input, .form-input .input-items.disabled textarea {
  border-color: var(--dark-2);
  color: var(--dark-3);
  background: none;
}
.form-input .input-items.disabled input::placeholder, .form-input .input-items.disabled textarea::placeholder {
  color: var(--dark-3);
  opacity: 1;
}
.form-input .input-items.disabled i {
  color: var(--dark-3);
}

.form-style-four .form-input label {
  padding-left: 44px;
  margin-bottom: 0;
}
.form-style-four .form-input .input-items input, .form-style-four .form-input .input-items textarea {
  border-top: 0;
  border-left: 0;
  border-right: 0;
}

.contact-info ul li .single-info {
  position: relative;
  margin-top: 19px;
}
.contact-info ul li .single-info .info-icon {
  position: absolute;
  top: 0;
  left: 0;
}
.contact-info ul li .single-info .info-icon i {
  color: var(--dark-3);
  font-size: 18px;
  line-height: 24px;
}
.contact-info ul li .single-info .info-content {
  padding-left: 30px;
}
.contact-info ul li .single-info .info-content .text {
  font-size: 16px;
  line-height: 24px;
  color: var(--dark-3);
  font-weight: 500;
}
.contact-info .social li {
  display: inline-block;
  margin-right: 12px;
}
.contact-info .social li a {
  font-size: 20px;
  height: 40px;
  width: 40px;
  line-height: 38px;
  border: 1px solid rgba(0, 0, 0, 0.096);
  text-align: center;
  border-radius: 5px;
  color: var(--dark-3);
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.contact-info .social li a:hover {
  color: var(--white);
  background-color: var(--primary);
  border-color: transparent;
}

/*===========================
  features css 
===========================*/
.features-five {
  background-color: var(--light-2);
  padding-top: 120px;
  padding-bottom: 120px;
}
.features-five .section-title {
  padding-bottom: 10px;
}
.features-five .section-title .title {
  font-size: 44px;
  font-weight: 600;
  color: var(--black);
  line-height: 55px;
}
@media (max-width: 767px) {
  .features-five .section-title .title {
    font-size: 30px;
    line-height: 35px;
  }
}

.features-style-five {
  position: relative;
  padding: 0 20px;
  margin-top: 40px;
}
.features-style-five::before {
  position: absolute;
  content: "";
  height: 100%;
  width: 4px;
  top: 0;
  left: 0;
  background: var(--primary);
}
.features-style-five .features-title {
  font-size: 24px;
  line-height: 30px;
  font-weight: 600;
  color: var(--black);
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .features-style-five .features-title {
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  .features-style-five .features-title {
    font-size: 20px;
  }
}
.features-style-five .text {
  font-size: 14px;
  line-height: 20px;
  color: var(--dark-3);
  margin-top: 16px;
}

/*===========================
  teams css 
===========================*/
.team-area {
  margin-bottom: 70px;
}

.team-style-four {
  position: relative;
  margin-top: 30px;
  box-shadow: var(--shadow-2);
  border-radius: 8px;
  overflow: hidden;
}
.team-style-four .team-image img {
  width: 100%;
}
.team-style-four .team-content {
  padding: 25px 30px;
  border-radius: 8px;
  position: relative;
}
.team-style-four .team-content .name {
  font-size: 22px;
  font-weight: 600;
  line-height: 30px;
  color: var(--black);
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .team-style-four .team-content .name {
    font-size: 20px;
  }
}
.team-style-four .team-content p {
  font-size: 15px;
  margin: 18px 0 12px 0;
}
.team-style-four .team-content .sub-title {
  font-size: 16px;
  line-height: 24px;
  color: var(--dark-3);
  margin-top: 2px;
  display: block;
}
.team-style-four .team-content .social {
  margin-top: 20px;
}
.team-style-four .team-content .social li {
  display: inline-block;
  margin-right: 12px;
}
.team-style-four .team-content .social li:last-child {
  margin: 0;
}
.team-style-four .team-content .social li a {
  font-size: 18px;
  color: var(--primary);
  -webkit-transition: all 0.2s ease-out 0s;
  -moz-transition: all 0.2s ease-out 0s;
  -ms-transition: all 0.2s ease-out 0s;
  -o-transition: all 0.2s ease-out 0s;
  transition: all 0.2s ease-out 0s;
}
.team-style-four .team-content .social li a:hover {
  color: var(--primary-dark);
}

/*============================
  Section Title Seven CSS
==============================*/
.section-title-seven {
  text-align: center;
  max-width: 550px;
  margin: auto;
  margin-bottom: 50px;
  position: relative;
  z-index: 1;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .section-title-seven {
    margin-bottom: 45px;
  }
}
@media (max-width: 767px) {
  .section-title-seven {
    margin-bottom: 35px;
  }
}
.section-title-seven span {
  text-transform: uppercase;
  color: var(--primary);
  display: inline-block;
  margin-bottom: 8px;
  font-size: 15px;
  font-weight: 600;
}
.section-title-seven h5 {
  font-weight: 600;
  margin-bottom: 7px;
  color: var(--primary);
  text-transform: uppercase;
  font-size: 1rem;
}
@media (max-width: 767px) {
  .section-title-seven h5 {
    font-size: 0.8rem;
  }
}
.section-title-seven h2 {
  margin-bottom: 18px;
  position: relative;
  padding-bottom: 15px;
}
.section-title-seven h2::before {
  position: absolute;
  content: "";
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  bottom: 0;
  height: 3px;
  width: 50px;
  background-color: var(--primary);
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .section-title-seven h2 {
    font-size: 2rem;
    line-height: 2.8rem;
  }
}
@media (max-width: 767px) {
  .section-title-seven h2 {
    font-size: 1.5rem;
    line-height: 1.9rem;
  }
}
.section-title-seven p {
  color: var(--dark-3);
}

/* ===== Buttons Css ===== */
.features-style-eight .primary-btn-outline {
  border-color: var(--primary);
  color: var(--primary);
}
.features-style-eight .active.primary-btn-outline, .features-style-eight .primary-btn-outline:hover, .features-style-eight .primary-btn-outline:focus {
  background: var(--primary-dark);
  color: var(--white);
}
.features-style-eight .deactive.primary-btn-outline {
  color: var(--dark-3);
  border-color: var(--gray-4);
  pointer-events: none;
}

/*===========================
  Features Eight CSS 
===========================*/
.features-eight {
  background-color: var(--light-2);
  padding-top: 120px;
  padding-bottom: 120px;
}
.features-eight .section-title {
  padding-bottom: 10px;
}
.features-eight .section-title .title {
  font-size: 44px;
  font-weight: 600;
  color: var(--black);
  line-height: 55px;
}
@media (max-width: 767px) {
  .features-eight .section-title .title {
    font-size: 30px;
    line-height: 35px;
  }
}
.features-eight .section-title .text {
  font-size: 16px;
  line-height: 24px;
  color: var(--black);
  margin-top: 24px;
}

.features-style-eight {
  background-color: rgba(255, 255, 255, 0.9);
  padding: 40px 20px;
  margin-top: 40px;
  border-radius: 8px;
}
.features-style-eight .features-icon {
  position: relative;
  display: inline-block;
  z-index: 1;
}
.features-style-eight .features-icon i {
  font-size: 70px;
  line-height: 70px;
  color: var(--primary);
}
.features-style-eight .features-icon .shape {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.features-style-eight .features-content {
  margin-top: 24px;
}
.features-style-eight .features-title {
  font-size: 28px;
  line-height: 35px;
  font-weight: 600;
  color: var(--black);
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
@media (max-width: 767px) {
  .features-style-eight .features-title {
    font-size: 20px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .features-style-eight .features-title {
    font-size: 22px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .features-style-eight .features-title {
    font-size: 24px;
  }
}
.features-style-eight .text {
  color: var(--dark-3);
  margin-top: 16px;
}
.features-style-eight .features-btn {
  margin-top: 32px;

}


/*------------------------------*/
/*--Section Name----------------*/
/*------------------------------*/


.block-5 {
  --block-background: white;
  --block-text-color: var(--text-primary);
  color: var(--block-text-color);
  background-color: #ffffff;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 56 28' width='56' height='28'%3E%3Cpath fill='%23fef1dc' fill-opacity='0.4' d='M56 26v2h-7.75c2.3-1.27 4.94-2 7.75-2zm-26 2a2 2 0 1 0-4 0h-4.09A25.98 25.98 0 0 0 0 16v-2c.67 0 1.34.02 2 .07V14a2 2 0 0 0-2-2v-2a4 4 0 0 1 3.98 3.6 28.09 28.09 0 0 1 2.8-3.86A8 8 0 0 0 0 6V4a9.99 9.99 0 0 1 8.17 4.23c.94-.95 1.96-1.83 3.03-2.63A13.98 13.98 0 0 0 0 0h7.75c2 1.1 3.73 2.63 5.1 4.45 1.12-.72 2.3-1.37 3.53-1.93A20.1 20.1 0 0 0 14.28 0h2.7c.45.56.88 1.14 1.29 1.74 1.3-.48 2.63-.87 4-1.15-.11-.2-.23-.4-.36-.59H26v.07a28.4 28.4 0 0 1 4 0V0h4.09l-.37.59c1.38.28 2.72.67 4.01 1.15.4-.6.84-1.18 1.3-1.74h2.69a20.1 20.1 0 0 0-2.1 2.52c1.23.56 2.41 1.2 3.54 1.93A16.08 16.08 0 0 1 48.25 0H56c-4.58 0-8.65 2.2-11.2 5.6 1.07.8 2.09 1.68 3.03 2.63A9.99 9.99 0 0 1 56 4v2a8 8 0 0 0-6.77 3.74c1.03 1.2 1.97 2.5 2.79 3.86A4 4 0 0 1 56 10v2a2 2 0 0 0-2 2.07 28.4 28.4 0 0 1 2-.07v2c-9.2 0-17.3 4.78-21.91 12H30zM7.75 28H0v-2c2.81 0 5.46.73 7.75 2zM56 20v2c-5.6 0-10.65 2.3-14.28 6h-2.7c4.04-4.89 10.15-8 16.98-8zm-39.03 8h-2.69C10.65 24.3 5.6 22 0 22v-2c6.83 0 12.94 3.11 16.97 8zm15.01-.4a28.09 28.09 0 0 1 2.8-3.86 8 8 0 0 0-13.55 0c1.03 1.2 1.97 2.5 2.79 3.86a4 4 0 0 1 7.96 0zm14.29-11.86c1.3-.48 2.63-.87 4-1.15a25.99 25.99 0 0 0-44.55 0c1.38.28 2.72.67 4.01 1.15a21.98 21.98 0 0 1 36.54 0zm-5.43 2.71c1.13-.72 2.3-1.37 3.54-1.93a19.98 19.98 0 0 0-32.76 0c1.23.56 2.41 1.2 3.54 1.93a15.98 15.98 0 0 1 25.68 0zm-4.67 3.78c.94-.95 1.96-1.83 3.03-2.63a13.98 13.98 0 0 0-22.4 0c1.07.8 2.09 1.68 3.03 2.63a9.99 9.99 0 0 1 16.34 0z'%3E%3C/path%3E%3C/svg%3E");
  
}

.card-2 {
  margin-bottom: 2.1rem;
}

.card-2:last-child {
  margin-bottom: 0
}

.card-2__title {
  font-size: 1.3rem;
  font-weight: 600;
  line-height: 1.5
}

.card-2__paragraph {
  font-size: .95rem;
  line-height: 1.6;
  opacity: .95
}

@media(min-width:992px) {

  .card-2__paragraph,
  .card-2__title {
    margin: 0 .5rem
  }
}

/* ===========================
   Styling for Card-2 Section
=========================== */
#block__container {
  max-width: 1200px;
  margin: 0 auto;
}

.card-2 {
  background-color: #f8f9fa; /* Light gray background for cards */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  padding: 15px 20px;
  margin-bottom: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-2:hover {
  transform: translateY(-5px); /* Subtle lift on hover */
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15); /* Enhanced shadow */
}

.card-2__title {
  font-size: 18px;
  font-weight: 700;
  color: #343a40; /* Dark gray for titles */
  margin: 0;
}

.card-2__paragraph {
  font-size: 14px;
  color: #6c757d; /* Medium gray for paragraph text */
  margin: 5px 0 0;
}

.fr-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px; /* Adjust icon size */
  background-color: #ffe3c4; /* Use peachy color for background */
  color: #343a40; /* Dark gray for icon */
  width: 50px;
  height: 50px;
  border-radius: 50%;
  flex-shrink: 0;
}

.px-2 {
  flex: 0 0 10px; /* Maintain consistent spacing between icon and text */
}

img.w-100 {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .card-2 {
    flex-direction: row !important;
    align-items: center;
  }
  
  .fr-icon {
    font-size: 20px;
    width: 40px;
    height: 40px;
  }

  .card-2__title {
    font-size: 16px;
  }

  .card-2__paragraph {
    font-size: 13px;
  }
}


/*===========================
  about-07 css
===========================*/
.about-seven {
  position: relative;
  padding: 100px 0;

}
.about-seven .about-left {
  padding-right: 100px;
}
.about-seven .about-left p {
  margin-bottom: 25px;
}
.about-seven .about-left .section-title {
  padding: 0;
  margin-bottom: 40px;
}
.about-seven .about-left .section-title span {
  position: relative;
  text-transform: capitalize;
  margin-bottom: 15px;
  display: block;
  color: #69843d;
}
.about-seven .about-left .section-title h2 {
  margin: 0;
  margin-bottom: 40px;
  text-transform: capitalize;
}
.about-seven .about-left .section-title h2::before {
  display: none;
}
.about-seven .about-left .author img {
  height: 60px;
  width: 60px;
  border-radius: 50%;
  float: left;
  margin-right: 15px;
}
.about-seven .about-left .author .content {
  margin-top: 40px;
}
.about-seven .about-left .author .content h5 {
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  position: relative;
  top: 22px;
}
.about-seven .about-left .author .content h5 a {
  display: inline-block;
  margin-left: 5px;
  font-weight: 500;
  text-transform: capitalize;
}
.about-seven .about-right {
  position: relative;
}
.about-seven .about-right img {
  width: 100%;
  border-radius: 5px;
  overflow: hidden;
}

/* Add a wrapper to style the image */
.about-seven .about-right img {
  display: inline-block; /* Ensures proper alignment */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Optional: adds a soft shadow */
}




/*===========================
  services css 
===========================*/
.services-six {
  padding-top: 120px; /* Padding for all sides */
  position: relative;
  background-color: #f8d6b5;
  border-radius: 5px;
  /* Section Title Six */
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .services-six {
    padding-top: 60px;
    padding-bottom: 60px;

  }
}
.services-six .section-title-four {
  text-align: center;
  max-width: 550px;
  margin: auto;
  margin-bottom: 50px;
  position: relative;
  z-index: 1;
  margin-top: 12px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .services-six .section-title-four {
    margin-bottom: 45px;
  }
}
@media (max-width: 767px) {
  .services-six .section-title-four {
    margin-bottom: 35px;
  }
}
.services-six .section-title-four span {
  text-transform: uppercase;
  color: var(--primary);
  display: inline-block;
  margin-bottom: 16px;
  font-size: 14px;
  font-weight: 600;
}
@media (max-width: 767px) {
  .services-six .section-title-four span {
    margin-bottom: 15px;
  }
}
.services-six .section-title-four h2 {
  margin-bottom: 15px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .services-six .section-title-four h2 {
    font-size: 2rem;
    line-height: 2.8rem;
  }
}
@media (max-width: 767px) {
  .services-six .section-title-four h2 {
    font-size: 1.5rem;
    line-height: 1.9rem;
  }
}
.services-six .section-title-four h3 {
  font-size: 3.8rem;
  line-height: 3.8rem;
  font-weight: 800;
  text-transform: uppercase;
  position: absolute;
  top: -18px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  color: var(--gray-3);
  z-index: -1;
  -webkit-text-stroke-width: 1px;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke-color: var(--gray-3);
  opacity: 0.5;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .services-six .section-title-four h3 {
    font-size: 3.3rem;
    line-height: 3.5rem;
    top: -18px;
  }
}
@media (max-width: 767px) {
  .services-six .section-title-four h3 {
    font-size: 2.7rem;
    line-height: 3.2rem;
    top: -17px;
  }
}
.services-six .section-title-four p {
  color: var(--dark-3);
}
.services-six .single-service {
  padding: 20px;
  padding-bottom: 50px;
  box-shadow: var(--shadow-2);
  border: none;
  border-radius: 10px;
  transition: all 0.4s ease-in-out;
  overflow: hidden;
  position: relative;
  margin-top: 30px;
  text-align: center;
  -webkit-transition: all 0.4s ease-out 0s;
  -moz-transition: all 0.4s ease-out 0s;
  -ms-transition: all 0.4s ease-out 0s;
  -o-transition: all 0.4s ease-out 0s;
  transition: all 0.4s ease-out 0s;

}
.services-six .single-service:hover {
  box-shadow: var(--shadow-4);
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .services-six .single-service {
    padding: 25px;
    padding-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .services-six .single-service {
    padding: 20px;
    padding-bottom: 30px;
  }
}
.services-six .single-service::before {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  height: 4px;
  width: 0%;
  background-color: var(--primary);
  transition: all 0.4s ease-in-out;
}
.services-six .single-service:hover::before {
  width: 100%;
}
.services-six .single-service img {
  margin-bottom: 30px;
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 0 30px 0 rgba(0, 0, 0, .09);  

}
.services-six .single-service h3 {
  color: var(--black);
  font-weight: 600;
}
.services-six .single-service p {
  color: var(--dark-3);
  margin-top: 15px;
}
.services-six .single-service .more {
  color: var(--black);
  font-weight: 600;
  margin-top: 30px;
  display: inline-block;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.services-six .single-service .more i {
  display: inline-block;
  margin-left: 5px;
  font-size: 15px;
  position: relative;
  top: 2px;
}
.services-six .single-service .more:hover {
  letter-spacing: 1px;
  color: var(--primary);
}

/*===========================
  about-02 css
===========================*/
.about-two {
  background-color: var(--accent);
  padding-top: 120px;
  padding-bottom: 120px;
  padding-left: 100px;
  padding-right: 100px;
  z-index: 1;
  
}
.about-two .section-title {
  text-align: center;
  max-width: 550px;
  margin: auto;
  position: relative;
  margin-bottom: 20px;
  z-index: 1;
}
.about-two .section-title h2 {
  margin-bottom: 20px;
  color: var(--primary);
}
.about-two .section-title p {
  color: var(--dark-3);
}

.single-features-one-items {
  margin-top: 50px;
  padding: 0 35px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .single-features-one-items {
    padding: 0;
  }
}
.single-features-one-items .features-image img {
  max-width: 400px;
  border-radius: 5px;
  box-shadow: 0 0 30px 0 rgba(0, 0, 0, .09);

}
.single-features-one-items .features-content {
  margin-top: 32px;
}
.single-features-one-items .features-content .features-title {
  font-weight: 700;
  margin-bottom: 16px;
}
.single-features-one-items .features-content .text {
  color: var(--dark-3);
}

/*------------------------------*/
/*--Section Name----------------*/
/*------------------------------*/
.block-10 {
  background: var(--accent);
  color: var(--text-primary)
}

.block-10 h1 {
  color: var(--primary);
}

.block-10__row {
  height: 300px
}

@media(min-width:992px) {
  .block-10__row {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    height: 100%
  }
}

.block-10__image-column {
  height: 100%;
  background-position: center;
  background-size: cover
}

@media(min-width:992px) {
  .block-10__image-column {
    margin: 0 !important
  }
}

.block-10__card {
  border-radius: 5px;
  margin-top: -100px;
  padding: 3.3rem 2rem;
  background: #fff;
  position: relative;
  z-index: 2
}

@media(min-width:470px) {
  .block-10__card {
    padding: 3.3rem
  }
}

@media(min-width:992px) {
  .block-10__card {
    margin-top: 0
  }
}

.block-10__li {
  font-size: 1rem;
  font-weight: 600;
  opacity: .9;
  margin-bottom: 2.5rem;
  line-height: 1.4
}

.block-10__li:last-child {
  margin-bottom: 0
}

.block-10__li-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  height: 2.5rem;
  width: 2.5rem;
  border-radius: 5px;
  background: rgba(0, 0, 0, .04);
  margin-bottom: 1.5rem
}

/*===== FOOTER TWO =====*/
.footer-two {
  background-color: var(--light-2);
}
.footer-two .f-about {
  margin-top: 30px;
}
.footer-two .f-about .text {
  margin-top: 20px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 1400px) {
  .footer-two .f-about {
    padding-right: 200px;
  }
}
.footer-two .footer-widget {
  padding-top: 70px;
  padding-bottom: 100px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .footer-two .footer-widget {
    padding-top: 40px;
    padding-bottom: 70px;
  }
}
@media (max-width: 767px) {
  .footer-two .footer-widget {
    padding-top: 20px;
    padding-bottom: 50px;
  }
}
.footer-two .footer-title {
  font-size: 18px;
  font-weight: 600;
  line-height: 22px;
  color: var(--black);
  position: relative;
}
.footer-two .footer-support {
  padding-top: 21px;
}
.footer-two .footer-support span {
  font-size: 16px;
  line-height: 24px;
  color: var(--black);
  font-weight: 500;
  margin-top: 9px;
  display: block;
}
@media (max-width: 767px) {
  .footer-two .footer-support span {
    display: block;
  }
}
.footer-two .social {
  padding-top: 27px;
}
.footer-two .social li {
  display: inline-block;
  margin-right: 15px;
}
.footer-two .social li:last-child {
  margin-right: 0;
}
.footer-two .social a {
  font-size: 18px;
  color: var(--dark-3);
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.footer-two .social a:hover {
  color: var(--primary);
}
.footer-two .footer-link {
  margin-top: 32px;
}
.footer-two .footer-link ul {
  margin-top: 8px;
}
.footer-two .footer-link ul a {
  font-size: 16px;
  line-height: 24px;
  color: var(--dark-3);
  margin-top: 16px;
  font-weight: 400;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
@media (max-width: 767px) {
  .footer-two .footer-link ul a {
    margin-top: 12px;
  }
}
.footer-two .footer-link ul a:hover {
  color: var(--primary);
}
.footer-two .footer-copyright {
  border-top: 1px solid var(--gray-4);
}
.footer-two .copyright {
  padding-bottom: 23px;
  padding-top: 13px;
}
.footer-two .copyright .text {
  color: var(--dark-3);
  margin-top: 10px;
}

