:root {
  --font-default: "Josefin Sans", 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";
  --font-primary: "Josefin Sans", sans-serif;
  --font-secondary: "Josefin Sans", sans-serif;
  --font-third: "Open Sans", sans-serif;
  --animate-duration: 2s;
}

/* Colors */
:root {
  --color-default: #212121;
  --color-primary: #FBF5F0;
  --color-button: #f85a40;
  --color-grey: #666464;
  --color-green: #3CC6AA;
}

/* Smooth scroll behavior */
:root {
  scroll-behavior: smooth;
}

:root {
  --font-xl: 45px;
  --font-30: 30px;
  --font-large: 19px;
  --font-medium: 20px;
  --font-small: 17px;
  --font-xsmall: 15px;
  --font-mini: 13px;
}

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: var(--font-default);
  color: var(--color-default);
  background-color: var(--color-primary);
  min-height: 100vh;
}

a {
  color: var(--color-primary);
  text-decoration: none;
}

a:hover {
  color: #fff;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-primary);
}

.weight-600 {
  font-weight: 600 !important;
}

.weight-400 {
  font-weight: 400 !important;
}

@media (min-width: 992px) {
  .pl-0 {
    padding-left: 0;
  }
  
  .pr-0 {
    padding-right: 0;
  }
}

/*--------------------------------------------------------------
# Sections & Section Header
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
}

.sections-bg {
  background-color: #FBF5F0;
}

.section-header {
  text-align: center;
  padding-bottom: 60px;
}

.section-header h2 {
  font-size: 14px;
  letter-spacing: 5px;
  font-weight: 600;
  margin-bottom: 20px;
  position: relative;
  color: #F46150;
}

.section-header h2:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--color-primary);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}


.section-header h3 {
    font-size: var(--font-30);
    font-weight: 600;
    color: #212121;
    margin-bottom: 1.5rem;
}

@media (min-width:1024px) {
  .section-header h3 {
    font-size: var(--font-xl);;
  }
}

.section-header .home-paragraph {
  margin-bottom: .8rem;
  color: #666464;
  font-size: 20px
}

.paragraph-content {
  color: #666464;
  font-size: 20px;
  text-align: center;
}

.content h2 {
  color: #212121;
  font-size: var(--font-30);
  font-weight: 600;
}

@media (min-width: 1024px) {
  .content h2 {
    font-size: var(--font-xl);;
  } 
}
/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs .page-header {
  padding: 60px 0 60px 0;
  min-height: 20vh;
  position: relative;
  background-color: var(--color-primary);
}

.breadcrumbs .page-header h2 {
  font-size: 56px;
  font-weight: 500;
  color: #fff;
  font-family: var(--font-secondary);
}

.breadcrumbs .page-header p {
  color: rgba(255, 255, 255, 0.8);
}

.breadcrumbs nav {
  background-color: #f6f6f6;
  padding: 20px 0;
}

.breadcrumbs nav ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--color-default);
}

.breadcrumbs nav ol a {
  color: var(--color-primary);
  transition: 0.3s;
}

.breadcrumbs nav ol a:hover {
  text-decoration: underline;
}

.breadcrumbs nav ol li+li {
  padding-left: 10px;
}

.breadcrumbs nav ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: var(--color-button);
  content: "/";
}

/*--------------------------------------------------------------
# Scroll top button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 99999;
  background: var(--color-button);
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}

.scroll-top:hover {
  background: rgba(248, 90, 64, 0.8);
  color: #fff;
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
  bottom: 15px;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: #fff;
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #fff;
  border-color: var(--color-primary) transparent var(--color-primary) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: animate-preloader 1.5s linear infinite;
  animation: animate-preloader 1.5s linear infinite;
}

@-webkit-keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

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

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

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

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.topbar {
  background: #00796b;
  height: 40px;
  font-size: 14px;
  transition: all 0.5s;
  color: #fff;
  padding: 0;
}

.topbar .contact-info i {
  font-style: normal;
  color: #fff;
  line-height: 0;
}

.topbar .contact-info i a,
.topbar .contact-info i span {
  padding-left: 5px;
  color: #fff;
}

@media (max-width: 575px) {

  .topbar .contact-info i a,
  .topbar .contact-info i span {
    font-size: 13px;
  }
}

.topbar .contact-info i a {
  line-height: 0;
  transition: 0.3s;
}

.topbar .contact-info i a:hover {
  color: #fff;
  text-decoration: underline;
}

.topbar .social-links a {
  color: rgba(255, 255, 255, 0.7);
  line-height: 0;
  transition: 0.3s;
  margin-left: 20px;
}

.topbar .social-links a:hover {
  color: #fff;
}

.header {
  transition: all 0.5s;
  z-index: 997;
  height: 90px;
  background-color: var(--color-primary);
}

.header.sticked {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  height: 70px;
}

.header .logo img {
  max-height: 44px;
  margin-right: 6px;
}

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 600;
  letter-spacing: 0.8px;
  color: #212121;
  font-family: var(--font-primary);
}

.header .logo h1 span {
  color: #f96f59;
}

.sticked-header-offset {
  margin-top: 70px;
}

section {
  scroll-margin-top: 70px;
}

/*--------------------------------------------------------------
# Desktop Navigation
--------------------------------------------------------------*/
@media (min-width: 1280px) {
  .navbar {
    padding: 0;
  }

  .navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navbar li {
    position: relative;
  }

  .navbar>ul>li {
    white-space: nowrap;
    padding: 10px 0 10px 28px;
  }

  .navbar a,
  .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 3px;
    font-family: var(--font-secondary);
    font-size: var(--font-small);
    font-weight: 600;
    color: black;
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
  }

  .navbar a i,
  .navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
  }

  .navbar>ul>li>a:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -6px;
    left: 0;
    background-color: var(--color-button);
    visibility: hidden;
    width: 0px;
    transition: all 0.3s ease-in-out 0s;
  }

  .navbar a:hover:before,
  .navbar li:hover>a:before,
  .navbar .active:before {
    visibility: none;
    width: 100%;
  }

  .navbar a:hover,
  .navbar .active,
  .navbar .active:focus,
  .navbar li:hover>a {
    color: #3CC6AA;
  }

  .navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 28px;
    top: calc(100% + 30px);
    margin: 0;
    padding: 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s;
    border-radius: 4px;
  }

  .navbar .dropdown ul li {
    min-width: 200px;
  }

  .navbar .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    font-weight: 600;
    color: #006a5d;
  }

  .navbar .dropdown ul a i {
    font-size: 12px;
  }

  .navbar .dropdown ul a:hover,
  .navbar .dropdown ul .active:hover,
  .navbar .dropdown ul li:hover>a {
    color: var(--color-button);
  }

  .navbar .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navbar .dropdown .dropdown ul {
    top: 0;
    left: calc(100% - 30px);
    visibility: hidden;
  }

  .navbar .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible;
  }
}

@media (min-width: 1280px) and (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

@media (min-width: 1280px) {
  .mobile-nav-show,
  .mobile-nav-hide {
    display: none !important;
  }
}

@media (min-width: 700px) {
  .show-nav {
    display: none !important;
  }
}

/*--------------------------------------------------------------
# Mobile Navigation
--------------------------------------------------------------*/
@media (max-width: 1279px) {
  .navbar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 400px;
    bottom: 0;
    transition: 0.3s;
    z-index: 9997;
  }

  .navbar ul {
    position: absolute;
    inset: 0;
    padding: 50px 0 10px 0;
    margin: 0;
    background: var(--color-primary);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
  }

  .navbar a,
  .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    font-family: var(--font-primary);
    font-size: var(--font-small);
    font-weight: 600;
    color: var(--color-default);
    white-space: nowrap;
    transition: 0.3s;
  }

  .navbar a i,
  .navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
  }

  .navbar a:hover,
  .navbar .active,
  .navbar .active:focus,
  .navbar li:hover>a {
    color: var(--color-green);
  }

  .navbar .getstarted,
  .navbar .getstarted:focus {
    background: var(--color-primary);
    padding: 8px 20px;
    border-radius: 4px;
    margin: 15px;
    color: #fff;
  }

  .navbar .getstarted:hover,
  .navbar .getstarted:focus:hover {
    color: #fff;
    background: var(--color-primary);
  }

  .navbar .dropdown ul,
  .navbar .dropdown .dropdown ul {
    position: static;
    display: none;
    padding: 10px 0;
    margin: 10px 20px;
    transition: all 0.5s ease-in-out;
    background-color: #007466;
    border: 1px solid #006459;
  }

  .navbar .dropdown>.dropdown-active,
  .navbar .dropdown .dropdown>.dropdown-active {
    display: block;
  }

  .mobile-nav-show {
    color: var(--color-grey);
    font-size: 28px;
    cursor: pointer;
    line-height: 0;
    transition: 0.5s;
    z-index: 9999;
    margin-right: 10px;
  }

  .mobile-nav-hide {
    color: var(--color-grey);
    font-size: 32px;
    cursor: pointer;
    line-height: 0;
    transition: 0.5s;
    position: fixed;
    right: 20px;
    top: 20px;
    z-index: 9999;
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .navbar {
    right: 0;
  }

  .mobile-nav-active .navbar:before {
    content: "";
    position: fixed;
    inset: 0;
    background: var(--color-primary);
    z-index: 9996;
  }
}

/*--------------------------------------------------------------
# About Us Section
--------------------------------------------------------------*/
.about-header {
  text-align: center;
}

.about-header h2 {
  font-size: 14px;
  letter-spacing: 5px;
  font-weight: 600;
  margin-bottom: 25px;
  position: relative;
  color: var(--color-button);
  text-transform: uppercase;
}

.about h3 {
  font-weight: 600;
  font-size: var(--font-30);
  font-family: var(--font-secondary);
  margin-bottom: 15px;
}

@media (min-width:1024px) {
  .about h3 {
    font-size: var(--font-xl);
  }
}

.about .paragraph-content {
    font-family: var(--font-third);
    color: #666464;
    font-size: var(--font-large);
    text-align: center;
    line-height: 35px;
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  padding: 0 0 10px 30px;
  position: relative;
}

.about .content ul i {
  position: absolute;
  font-size: 20px;
  left: 0;
  top: -3px;
  color: var(--color-primary);
}


.about-title {
  color: #212121;
  font-size : 23px;
  font-weight: 400;
}

.about-content {
  font-family: var(--font-third);
  font-weight:400;
  color: #666464;
  font-size : 16px;
}

/*--------------------------------------------------------------
# Clients Section
--------------------------------------------------------------*/
.clients {
  padding: 40px 0;
}

.clients .swiper {
  padding: 10px 0;
}

.clients .swiper-slide img {
  transition: 0.3s;
}

.clients .swiper-slide img:hover {
  transform: scale(1.1);
}

.clients .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.clients .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  background-color: #ddd;
}

.clients .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--color-primary);
}

/*--------------------------------------------------------------
# Our Services Section
--------------------------------------------------------------*/
.services .service-item {
  padding: 40px;
  background: #F7EDE2;
  height: 100%;
}

.services .service-item p {
  color: #666464;
  font-size : 20px;
  line-height: 24px;
  margin-bottom: 0;
}

.services .price-item {
  padding: 40px;
  background-color: #fff;
  height: 100%;
}

.services .price-item h3 {
  color: #212121;
  font-size : 20px;
  text-align: left;
  margin-bottom: 0;
}

.services .price-item h4 {
  color: #666464;
  font-size : 20px;
  text-align: left;
  margin-bottom: 1.5rem;
}

.services .service-item .icon {
  width: 48px;
  height: 48px;
  position: relative;
  margin-bottom: 50px;
}

.text-left {
  text-align: left !important;
}

.services .service-item .icon i {
  color: var(--color-default);
  font-size: 56px;
  transition: ease-in-out 0.3s;
  z-index: 2;
  position: relative;
}

.services .service-item .icon:before {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  background: #eeeeee;
  border-radius: 50px;
  z-index: 1;
  top: 10px;
  right: -20px;
  transition: 0.3s;
}

.services .service-item h3 {
  font-weight: 600;
  margin: 0 0 20px 0;
  padding-bottom: 8px;
  position: relative;
  display: inline-block;
  transition: 0.3s;
  color: #212121;
  font-size : 30px;
} 

.services .price-item .readmore {
  margin-top: 100px;
  display: inline-block;
  padding: 15px 20px;
  width: 50%;
  font-size: 13px;
  color : #fff;
  background-color : #F46150;
  text-align: center;
}

.services .service-item:hover .icon:before {
  background: #00b6a1;
}

.services .service-item:hover h3 {
  border-color: var(--color-primary);
}

.price-choose {
  padding: 40px;
  height: 100%;
  background-color: #FEFDFC;
  /* box-shadow: 0 0 0 4px rgba(128, 128, 128, 0.7); */
  box-shadow: 0 0 20px 0px rgba(128, 128, 128, 0.4);
}

.price-choose h3 {
  font-weight: 600;
  font-family: var(--font-third);
  color: #666464;
  font-size: 17px;
  padding-left: 0px;
}

@media (max-width:1021px) {
  .price-choose h3 {
    padding-left: 30px;
  }
}

.price-quote {
  padding: 40px;
  background-color: #fff;
  /* box-shadow: 5px 5px 5px 5px #888888; */
  box-shadow: 0 0 20px 0px rgba(128, 128, 128, 0.4);
  height: 100%;
}

.price-quote h3 {
  color: #212121;
  font-size : var(--font-xl);
  text-align: center;
  font-weight: 600;
}

.price-quote h4 {
  font-family: var(--font-third);
  font-weight:400;
  color: #666464;
  font-size : 16px;
  text-align: center;
}

.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #F46150;
  transition: .4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: .4s;
}

input:checked + .slider {
  background-color: #3CC6AA;
}

input:focus + .slider {
  box-shadow: 0 0 0 4px rgba(21, 156, 228, 0.7);
  outline: none;
}

input:checked + .slider:before {
  transform: translateX(26px);
}

.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}


/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .testimonial-wrap {
  padding-left: 10px;
}

.testimonials .testimonial-item {
  font-family: var(--font-default);
  text-align: center;
  font-size: var(--font-medium);
  box-sizing: content-box;
  padding: 0 30px;
  margin: 0px 10px;
  position: relative;
  background: transparent;
  border-radius: 10px;
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50px;
  margin-right: 15px;
}

.testimonials .testimonial-item h3 {
  font-size: 19px;
  font-weight: 600;
  margin: 10px 0 5px 0;
  color: #000;
}

.tteestimonials .testimonial-item h4 {
  font-size: 14px;
  color: #999;
  margin: 0;
}

.testimonials .testimonial-item .stars {
  margin: 10px 0;
}

.testimonials .testimonial-item .stars i {
  color: #ffc107;
  margin: 0 1px;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: #009d8b;
  font-size: 26px;
  line-height: 0;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  transform: scale(-1, -1);
}

.testimonials .testimonial-item p {
  font-family: var(--font-third);
  font-size: 16px;
  margin: 15px auto 15px auto;
  color: var(--color-grey);
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: rgba(0, 0, 0, 0.2);
  opacity: 1;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #3CC6AA;
}

@media (max-width: 767px) {
  .testimonials .testimonial-wrap {
    padding-left: 0;
  }

  .testimonials .testimonial-item {
    padding: 30px;
    margin: 15px;
  }

  .testimonials .testimonial-item .testimonial-img {
    position: static;
    left: auto;
  }
}

/*--------------------------------------------------------------
# Our Team Section
--------------------------------------------------------------*/
.team-header h2 {
  color: var(--color-default);
  font-size: var(--font-30);
  font-weight: 600;
  margin-bottom: 25px;
}

@media (min-width: 1024px) {
  .team-header h2 {
    font-size: var(--font-xl);
  }
}

.team-header h3 {
  font-family: var(--font-third);
  color: var(--color-grey);
  font-size: var(--font-large);
  font-weight:400;
  margin-bottom: 50px;
}

.team .member {
  text-align: left;
  border-radius: 10px;
  padding: 15px;
  overflow: hidden;
}

.team .member img {
  overflow: hidden;
    border-radius: 50%;
}

.team .member h4 {
  font-weight: 600;
  margin-top: 16px;
  margin-bottom: 2px;
  font-size: 23px;
  color: var(--color-default);
}

.team .member p {
  font-family: var(--font-third);
  padding-top: 10px;
  font-size: 16px;
  color: var(--color-grey);
}

/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/
.price h2 {
  color: var(--color-default);
  font-size: var(--font-xl);
  font-weight: 600;
  margin-bottom: 25px;
}

@media(max-width:624px) {
  .price h2 {
    font-size: var(--font-30);
  }
}

.price h3 {
  font-family: var(--font-third);
  color: var(--color-grey);
  font-size: var(--font-large);
  margin-bottom: 50px;
}

.price-header h2 {
  font-size: 14px;
  letter-spacing: 5px;
  font-weight: 600;
  margin-bottom: 20px;
  position: relative;
  color: #F46150;
}

.price-header h3 {
  font-size: var(--font-xl);;
  font-weight: 600;
  color: #212121;
  margin-bottom: 1.5rem;
}

@media (max-width:624px) {
  .price-header h3 {
    font-size: var(--font-30);
  }
}

.price .service-description {
  padding: 40px;
  background: #F7EDE2;
  height: 100%;
}

.price .service-description h3 {
  font-weight: 600;
  position: relative;
  display: inline-block;
  color: #212121;
  font-size : 30px;
  margin-bottom: 0px;
} 

.price .service-description p {
  font-family: var(--font-third);
  color: #666464;
  font-size : 16px;
  margin-bottom: 0;
}

.price .price-item {
  padding: 60px 35px 40px 35px;
  background-color: #fff;
  height: 100%;
}

.price .price-item h3 {
  font-family: var(--font-third);
  color: var(--color-default);
  font-weight: 400;
  font-size : 16px;
  margin-bottom: 5px;
}

.price .price-item h4 {
  font-family: var(--font-third);
  color: var(--color-grey);
  font-size : 16px;
  margin-bottom: 1rem;
}

.price .price-item .readmore {
  font-family: var(--font-third);
  margin-top: 100px;
  display: inline-block;
  padding: 15px 20px;
  width: 100%;
  font-size: 12px;
  font-weight: 600;
  color : #fff;
  background-color : #F46150;
  text-align: center;
}

.price .instructions {
  font-family: var(--font-third);
  font-size: var(--font-large);
  font-weight:400;
  color: var(--color-grey);
}

.price .instructions li {
  margin-bottom:20px;
}

.price .click_here {
  color: var(--color-green);
}

.price .click_here:hover {
  color: var(--color-green);
  text-decoration: underline;
}

.readmore {
  font-family: var(--font-third);
  display: inline-block;
  padding: 15px 20px;
  width: 70%;
  font-size: 12px;
  font-weight: 600;
  color : #fff;
  background-color : #F46150;
  text-align: center;
}

/*--------------------------------------------------------------
# Frequently Asked Questions Section
--------------------------------------------------------------*/
.faq .content h3 {
  font-weight: 400;
  font-size: 34px;
}

.faq .content h4 {
  font-size: 20px;
  font-weight: 600;
  margin-top: 5px;
}

.faq .content p {
  font-family: var(--font-third);
  font-size: 19px;
  color: #6c757d;
}

.faq .accordion-item {
  border: 0;
  margin-bottom: 20px;
  box-shadow: 0px 5px 25px 0px rgba(0, 0, 0, 0.06);
  border-radius: 10px;
}

.faq .accordion-item:last-child {
  margin-bottom: 0;
}

.faq .accordion-collapse {
  border: 0;
}

.faq .accordion-button {
  padding: 20px 50px 20px 20px;
  font-weight: 600;
  border: 0px solid black;
  font-size: 18px;
  line-height: 24px;
  color: var(--color-default);
  text-align: left;
  background: transparent;
  box-shadow: none;
  border-radius: 10px;
}


.faq .accordion-button .num {
  padding-right: 10px;
  font-size: 20px;
  line-height: 0;
  color: var(--color-primary);
}

.faq .accordion-button:not(.collapsed) {
  color: var(--color-primary);
  border-bottom: 0;
  box-shadow: none;
}

.accordion {
  --bs-accordion-bg: transparent !important;
  --bs-accordion-border-color: black;
}

.faq .accordion-button:after {
  position: absolute;
  right: 20px;
  top: 20px;
}

.faq .accordion-body {
  padding: 0 40px 30px 45px;
  border: 0;
  border-radius: 10px;
  background: #fff;
  box-shadow: none;
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-container {
  background-color: var(--color-primary);
  height: 100%;
  padding: 20px;
}

.contact .info-item {
  width: 100%;
  margin-bottom: 20px;
  color: var(--color-default);
}

.contact .info-item h2 {
  color: var(--color-default);
  font-size: var(--font-xl);
  font-weight: 600;
}

.contact .info-item p {
  font-family: var(--font-third);
  color: var(--color-grey);
  font-size : var(--font-large);
  font-weight:400;

}

.contact .info-item .link {
  font-family: var(--font-third);
  color: var(--color-button);
  font-size : var(--font-large);
  text-decoration: underline;
  font-weight:400;
}

@media(max-width:624px) {
  .contact .info-item h2 {
    font-size: var(--font-30);
  }
  
}
/*--------------------------------------------------------------
# Book Class
--------------------------------------------------------------*/
.book h2 {
  font-size: var(--font-xl);
  color: var(--color-default);
  font-weight: 600;
  padding-bottom: 10px;
}

.book h3 {
  font-family: var(--font-third);
  font-size: var(--font-large);
  color: var(--color-grey);
  font-weight: 400;
}

.book-header {
  text-align: center;
}

@media(max-width:624px) {
  .book h2 {
    font-size: var(--font-30);
  }
  
}

/*--------------------------------------------------------------
# Career Section
--------------------------------------------------------------*/
.career {
  text-align: center;
}

.career h2 {
  font-size: var(--font-xl);
  font-weight: 600;
  color: #212121;
  margin-bottom: 1.5rem;
}

@media(max-width:624px) {
  .career h2 {
    font-size: var(--font-30);
  }
  
}

.career p{
  color: var(--color-grey);
  font-size: 19px;
  font-family: var(--font-third);
}


.career .php-email-form {
  font-family: var(--font-third);
  font-weight: 400;
  width: 100%;
  height: 100%;
  padding: 30px;
  border-radius: 0 10px 10px 0;
}

.career .php-email-form .form-group {
  padding-bottom: 8px;
}

.career .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #df1529;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.career .php-email-form .error-message br+br {
  margin-top: 25px;
}

.career .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #059652;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.career .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.career .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #059652;
  border-top-color: #fff;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}

.career .php-email-form input,
.career .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 16px;
}

.career .php-email-form input[type=text],
.career .php-email-form input[type=email],
.career .php-email-form textarea {
  padding: 12px 15px;
  border: 0px black;
}

.career .php-email-form input[type=text]:focus,
.career .php-email-form input[type=email]:focus,
.career .php-email-form textarea:focus {
  border-color: var(--color-primary);
}

.career .php-email-form textarea {
  padding: 10px 12px;
}

.career .php-email-form button[type=submit] {
  background: var(--color-button);
  border: 0;
  padding: 14px 45px;
  color: #fff;
  transition: 0.4s;
  border-radius: 0px;
  font-family : var(--font-third);
  font-weight: 400;
  font-size: 15px;
}

.career .php-email-form button[type=submit]:hover {
  background: var(--color-button);
}

@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

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

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

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

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  position: relative;
  background: var(--color-primary);
  padding: 10px 0 0 0;
}

@media (min-width: 1024px) {
  .hero {
    padding: 60px 0 0 0;
  }
}

@media (min-width: 1365px) {
  .hero {
    background-attachment: fixed;
  }
}

.hero h2 {
  font-size: var(--font-xl);
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--color-default);
}

.hero p {
  font-family: var(--font-third);
  color: var(--color-grey);
  font-weight: 400;
  font-size: var(--font-large);
  margin-bottom: 30px;
}

.hero .btn-get-started, .btn-get-started {
  font-family: var(--font-third);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 14px 40px;
  transition: 0.3s;
  color: #fff;
  background: #F46150;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.08);
  border: 2px solid rgba(255, 255, 255, 0.1);
}

.hero .btn-get-started:hover {
  border-color: rgba(255, 255, 255, 0.5);
}

.hero .btn-watch-video {
  font-size: 16px;
  transition: 0.5s;
  margin-left: 25px;
  color: #fff;
  font-weight: 600;
}

.hero .btn-watch-video i {
  color: rgba(255, 255, 255, 0.5);
  font-size: 32px;
  transition: 0.3s;
  line-height: 0;
  margin-right: 8px;
}

.hero .btn-watch-video:hover i {
  color: #fff;
}

@media (max-width: 640px) {
  .hero h2 {
    font-size: var(--font-30);
  }

  .hero .btn-get-started,
  .hero .btn-watch-video {
    font-size: 15px;
  }
}

.hero .icon-boxes {
  padding-bottom: 60px;
}

@media (min-width: 1200px) {
  .hero .icon-boxes:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: calc(50% + 20px);
    background-color: #fff;
  }
}

.hero .icon-box {
  padding: 60px 30px;
  position: relative;
  overflow: hidden;
  background: #008d7d;
  box-shadow: 0 0 29px 0 rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease-in-out;
  border-radius: 8px;
  z-index: 1;
  height: 100%;
  width: 100%;
  text-align: center;
}

.hero .icon-box .title {
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 24px;
}

.hero .icon-box .title a {
  color: #fff;
  transition: 0.3s;
}

.hero .icon-box .icon {
  margin-bottom: 20px;
  padding-top: 10px;
  display: inline-block;
  transition: all 0.3s ease-in-out;
  font-size: var(--font-xl);
  line-height: 1;
  color: rgba(255, 255, 255, 0.6);
}

.hero .icon-box:hover {
  background: #009786;
}

.hero .icon-box:hover .title a,
.hero .icon-box:hover .icon {
  color: #fff;
}

/*--------------------------------------------------------------
# Faq
--------------------------------------------------------------*/

.nav-pills .nav-link.active, .nav-pills .show>.nav-link {
    color: #fff;
    background-color: var(--color-button);
    font-size: 23px;
    font-weight:600;
}

.nav-link {
  display: block;
  padding: var(--bs-nav-link-padding-y) var(--bs-nav-link-padding-x);
  font-size: 23px;
  font-weight: var(--bs-nav-link-font-weight);
  color: var(--color-default);
  text-decoration: none;
  transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out;
}

.nav-link:focus, .nav-link:hover {
  color: var(--color-default);
}

.faq .accordion-button:not(.collapsed) {
  color: var(--color-default);
  border-bottom: 0;
  box-shadow: none;
  font-size: 19px;
  font-weight:600;
}

.faq .accordion-body {
  font-family: var(--font-third);
  font-weight:400;
  padding: 0 40px 30px 20px;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: var(--color-grey);
  box-shadow: none;
}

.accordion-flush .accordion-item .accordion-button, .accordion-flush .accordion-item .accordion-button.collapsed {
  border-radius: 20px;
  font-size: 19px;
  font-weight:600;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
  font-size: var(--font-large);
  background-color: #F7EDE2;
  padding: 50px 0px 10px; 
  color: black;
}

.footer .footer-info .logo {
  margin-bottom: 10px;
}

.footer .footer-info .logo img {
  max-height: 40px;
  margin-right: 6px;
}

.footer .footer-info .logo span {
  font-weight: 600;
  font-size:19px;
  letter-spacing: 1px;
  color: #212121;
  font-family: var(--font-primary);
}

.footer .footer-info p {
  font-size: 16px;
  font-family: var(--font-third);
}

.footer .social-links a{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 16px;
  color: #fff;
  margin-right: 10px;
  transition: 0.3s;
  background-color:#F46150;
}

.footer .subscribe {
  border-radius: 0;
  font-size: 12px;
  border: 0px solid #ced4da;
  line-height: 2;
}

.footer .social-links a:hover {
  color: #fff;
  border-color: #fff;
}

.footer h4 {
  font-size: 19px;
  font-weight: 600;
  position: relative;
  padding-bottom: 12px;
}

.footer .footer-links {
  margin-bottom: 30px;
}

.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-links ul i {
  padding-right: 2px;
  color: rgba(0, 131, 116, 0.8);
  font-size: 12px;
  line-height: 0;
}

.footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  font-family: var(--font-third);
  font-size: 16px;
  font-weight:400;
  color: #666464;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

.footer .footer-links ul a:hover {
  color: var(--color-green);
}

.footer .footer-contact p {
  font-family: var(--font-third);
  line-height: 26px;
  font-weight: 400;
  color: #666646;
  font-size:16px
}

.footer .copyright {
  font-family : var(--font-third);
  padding-top: 10px;
  text-align: center;
  font-size: 14px;
  color: var(--color-grey);
}

.footer .credits {
  padding-top: 4px;
  text-align: center;
  font-size: 13px;
}

.footer .credits a {
  color: black;
}

.footer-email {
  font-family: var(--font-third);
  color:#F46150;
  font-size:16px;
  text-decoration: underline;
}

.footer-email:hover {
  color:#F46150;
  font-size:18px;
  text-decoration: underline;
}


.navbar-whatapps {
    display: none !important;
  }

@media (min-width: 1280px) {
  .navbar-whatapps {
    display: flex !important;
  }
}

@media (max-width:1023px) {
  .input-group>:not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback) {
    margin-left: -40px;
  }
}

.image-position {
  text-align: center;
}

.back_pain {
  width: 238.524px;
  height: 209.493px;
}

.image-hide {
  display: none !important;
}

.flower {
  right: 0;
  bottom: 120px;
  z-index: 0;
  width: 120px;
}

.stone {
    right: 0;
    bottom: 99px;
    z-index: 0;
    width: 68px;
}

.slippers {
  left: 270px;
  bottom: 10px;
  z-index:0; 
  width:80px
}

.seats {
  right: 200px;
  bottom: 10px;
   z-index:0; 
   width:160px
}

@media (min-width: 1220px) {
  .slippers {
      left: 250px;
    bottom: 15px;
  }
  
  .seats {
    right:200px;
     bottom:10px; 
  }
}

@media (min-width: 1440px) {
  .slippers {
    left: 250px;
    bottom: 15px;
  }
  
  .seats {
    right:200px;
     bottom:50px; 
  }
}

@media (min-width: 1024px) {
  .image-position {
    text-align: left;
  }

  .back_pain {
    width: 438.524px;
    height: 409.493px;
  }

  .image-hide {
    display: block !important;
  }

  .flower {
    right: 395px;
   
  }
  
  .stone {
    right: 355px;
  }
  
}

.qrcode {
  margin-left:auto;
  margin-right:auto;
  margin-bottom: 10px;
}

@media (min-width: 1024px) {
  .qrcode {
      margin-left:auto;
      margin-right:0;
  }
}

.img-responsive{
  display:block;
  max-width:100%;
  height:auto
 }

.div-wrapper img {
    width: 100%;
    text-align: center;
}

.bi::before, [class^="bi-"]::before, [class*=" bi-"]::before {
  line-height: 2 !important;
}

.input-group>.form-control:focus, .input-group>.form-floating:focus-within, .input-group>.form-select:focus {
    z-index: 2;
}
