/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
:root {
  --font-dark: #444444;
  --font-light: #fff;

  --bg-body: #fffdfd;
  --bg-header-scrolled: rgba(255, 255, 255, 0.95);
  --bg-navbar-mobile: #fff;
  --bg-section-default: #f4f0f2;
  --bg-section-alternate: #f4f0f2;
  --bg-footer: white;

  --primary: #aa7474; /*af6e7c*/
  --primary-light1: #cb9797; /*bd8f97*/
  --primary-light2: #e7c7c8;
  --primary-light3: #efdbda;

  /*
  --primary: #e43c5c;
  --primary-light1: #ea6981;
  --primary-light2: #e8bfc7;
  --primary-light3: #fdeff2;
  */
}

body {
  font-family: "Open Sans", sans-serif;
  color: var(--font-dark);
  /*background-color: #f4f0f2;*/
  background-color: var(--bg-body);
}

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

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

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Nunito", sans-serif;
}


/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: var(--primary);
  width: 40px;
  height: 40px;
  border-radius: 50px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 28px;
  color: var(--font-light);
  line-height: 0;
}

.back-to-top:hover {
  background: var(--primary-light1);
  color: var(--font-light);
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}


/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  transition: all 0.5s;
  z-index: 997;
  padding: 20px 0;
}

#header.header-scrolled {
  border-bottom: 1px solid #ced4da;
}

#header .logo {
  font-size: 20px;
  line-height: 2;
}

#header .logo h1 {
  margin: 0;
  padding: 0;
  font-size: 50px;
  font-weight: 600;
  letter-spacing: 1px;
  line-height: 1;
  /*text-transform: uppercase;*/
}

#header .logo h2 {
  margin: 0;
  padding: 0;
  font-size: 12px;
  font-weight: 600;
  font-style: italic;
  letter-spacing: 1px;
  line-height: 1;
}

#header .logo a {
  color: var(--font-light);
}

#header.header-scrolled .logo a {
  color: var(--font-dark);
}

#header .logo img {
  max-height: 40px;
}

#header.header-scrolled,
#header.header-inner-pages {
  background: var(--bg-header-scrolled);
  padding: 12px 0;
}


/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.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 24px;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: "Poppins", sans-serif;
  color: var(--font-light);
  font-size: 15px;
  padding: 0 4px;
  white-space: nowrap;
  transition: 0.3s;
  letter-spacing: 0.4px;
  position: relative;
}

#header.header-scrolled .navbar a,
#header.header-scrolled .navbar a:focus {
  color: var(--font-dark);
}

.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(--primary);
  visibility: hidden;
  transform: scaleX(0);
  transition: all 0.3s ease-in-out 0s;
}

.navbar a:hover:before,
.navbar li:hover>a:before,
.navbar .active:before {
  visibility: visible;
  transform: scaleX(1);
}

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

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: var(--font-light);
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

#header.header-scrolled .mobile-nav-toggle {
  color: var(--font-dark);
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  /*background: rgba(45, 37, 38, 0.9);*/
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 75px;
  right: 15px;
  /*bottom: 15px;*/
  left: 15px;
  padding: 10px 0;
  background-color: var(--bg-navbar-mobile);
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile>ul>li {
  padding: 0;
}

.navbar-mobile a:hover:before,
.navbar-mobile li:hover>a:before,
.navbar-mobile .active:before {
  visibility: hidden;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: var(--font-dark);
}

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

#header.header-scrolled .navbar-mobile a:hover,
#header.header-scrolled .navbar-mobile .active,
#header.header-scrolled .navbar-mobile li:hover>a {
  color: var(--primary);
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}


/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/

#hero {
  width: 100%;
  height: 100vh;
  background: url("../img/hero-bg.jpg") top center;
  background-size: cover;
  position: relative;
}

#hero:before {
  content: "";
  background: rgba(0, 0, 0, 0.2);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#hero .hero-container {
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  padding: 0 15px;
}

#hero h1 {
  font-family: 'Caveat', cursive;
  font-size: 80px;
  color: var(--font-light);
}

#hero h2 {
  background: rgba(255, 255, 255, 0.3);
  color: var(--font-light);
  font-size: 26px;
  padding: 10px 30px;
  margin-top: 20px;
  margin-bottom: 20px;
  border-radius: 50px;
  /* text-transform: uppercase; */
  letter-spacing: 2px;
}


#hero .btn-get-started {
  text-transform: uppercase;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 30px 9px 30px;
  border-radius: 50px;
  transition: 0.5s;
  border: 2px solid var(--font-light);
  color: var(--font-light);
  margin-top: 30px;
}

#hero .btn-get-started:hover {
  background: var(--primary);
  border: 2px solid var(--primary);
}

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

@media (max-width: 768px) {
  #hero h1 {
    font-size: 80px;
  }

  #hero h2 {
    font-size: 22px;
  }
}

@media (max-height: 500px) {
  #hero {
    height: 150vh;
  }
}


/*--------------------------------------------------------------
# Section General
--------------------------------------------------------------*/

.section-title {
  text-align: center;
  padding-top: 20px;
  padding-bottom: 20px;
}

.section-title h2 {
  color: var(--font-dark);
  font-weight: 700;
}

.section-title h2 span {
  color: var(--primary);
}


/*--------------------------------------------------------------
# Success Section
--------------------------------------------------------------*/

#success {
  width: 100%;
  height: 100vh;
  position: relative;
}

#success .success-container {
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  padding: 0 15px;
}

#header-success {
  background: var(--bg-header-scrolled);
  padding: 12px 0;
  border-bottom: 1px solid #ced4da;
}

#header-success h1 {
  margin: 0;
  padding: 0;
  font-size: 50px;
  font-weight: 600;
  letter-spacing: 1px;
  line-height: 1;
  /*text-transform: uppercase;*/
}

#header-success h2 {
  margin: 0;
  padding: 0;
  font-size: 12px;
  font-weight: 600;
  font-style: italic;
  letter-spacing: 1px;
  line-height: 1;
}

#header-success a {
  color: var(--font-dark);
}


/*--------------------------------------------------------------
# Section About
--------------------------------------------------------------*/

#about img {
  /*max-width: 400px;
  height: 400px;
  position: relative;
  overflow: hidden;
  /*border-radius: 50%;*/
  /*box-shadow: 0 16px 38px -12px rgba(0, 0, 0, 0.56), 0 4px 25px 0px rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(0, 0, 0, 0.2);*/
}

#about h3 {
  font-size: 1.6rem;
  font-weight: 700;
  /*color: var(--primary);*/
  margin-top: 15px;
  margin-bottom: 15px;
}

#about h4 {
  font-size: 1rem;
  text-transform: uppercase;
}

#about .about-img {
  max-width: 400px;
  height: 400px;
  margin-bottom: 40px;
}

#about .about-img .img  {
  padding: 0 0 20px 20px;
  position: relative;
}

#about .about-img .img::before  {
  content: '';
  position: absolute;
  top: 20px;
  left: 0;
  right: 20px;
  bottom: 0;
  background: var(--primary-light2);
}

#about .about-img .img img {
  position: relative;
  z-index: 2;
}

#about .about-img .img img:hover {
  transition: all 0.5s;
  transform: scale(0.95);
}

#about .about-img .about-img-caption {
  width: 50% !important;
  position: relative;
  bottom: 40px;
  right: 20px;
  margin-left: auto;
  z-index: 3;
  padding: 15px;
  color: #000;
  text-align: center;
  font-style: italic;
  font-weight: 500;
  background-color: var(--primary-light1);
}

@media (max-width: 450px) {
  #about .about-img  {
    width: 90%;
    height: auto;
    margin-bottom: 0px;
  }
}


/*--------------------------------------------------------------
# Section Services
--------------------------------------------------------------*/

#services .card {
  border-radius: 0%;
  padding-left: 0;
  padding-right: 0;
}

#services .card-img-top {
  border-radius: 0%;
}

#services .card h5 {
  font-weight: 700;
}

#services .card:hover h5 {
  color: var(--primary);
}


/*--------------------------------------------------------------
# Section Prices
--------------------------------------------------------------*/

#prices .container {
  max-width: 800px;
}

#prices .accordion {
  --bs-accordion-border-radius: 0%;
  --bs-accordion-inner-border-radius: 0%;
  --bs-accordion-color: var(--font-dark);
  --bs-accordion-btn-focus-border-color: var(--primary-light1);
  --bs-accordion-btn-focus-box-shadow: 0;
  --bs-accordion-active-color: var(--primary);
  --bs-accordion-active-bg: var(--primary-light3);
}

#prices .accordion-button {
  font-size: 1rem;
  font-weight: 700;
}

#prices .accordion-button.collapsed::after, 
#prices .accordion-button:not(.collapsed)::after {
  background-image: none;
  font-family: "bootstrap-icons";
  content: "\F282";
}

.acordion-body {
  -webkit-hyphens: auto;
  -moz-hyphens: auto;
  -ms-hyphens: auto;
  -o-hyphens: auto;
  word-break:break-word;
  hyphens: auto;
}

.accordion-body p {
  margin-top: 0rem;
  margin-bottom: 0.3rem;
}

#prices .accordion-body span {
  font-weight: 600;
}

#prices .accordion-body .ul-topics {
  margin-bottom: 0;
}

#prices .accordion-body .p-annotation {
  font-style: italic;
  margin-bottom: 0;
}


/*--------------------------------------------------------------
# Section Contact
--------------------------------------------------------------*/

#contact .container {
  max-width: 800px;
  margin-bottom: 40px;
}

#contact iframe {
  width: 100%;
  height: 300px;
  border: 1px solid #ced4da;
}

#contact .contact-form input,
#contact .contact-form textarea  {
  border-radius: 0;
  box-shadow: none;
}

#contact .contact-form input:focus,
#contact .contact-form input:focus:active,
#contact .contact-form textarea:focus, 
#contact .contact-form textarea:focus:active {
  border-color: var(--primary);
}

#contact .contact-form button {
  background: var(--primary);
  border: 0;
  padding: 10px 28px;
  color: white;
  transition: 0.4s;
  border-radius: 50px;
}

#contact .contact-form button:hover {
  background-color: var(--primary-light1);
}

#contact .info h4 {
  padding: 0 0 0 60px;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 2px;
}

#contact .info p {
  padding: 0 0 0 60px;
  margin-bottom: 0;
  font-size: 14px;
}

#contact .info i {
  font-size: 20px;
  color: var(--primary);
  float: left;
  width: 44px;
  height: 44px;
  background: #fdeff2;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
}

#contact .info-address:hover i {
  background-color: var(--primary);
  color: white;
}

#contact .info-email {
  margin-top: 30px;
}

#contact .info-email:hover i {
  background-color: var(--primary);
  color: white;
}


/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/

#footer {
  color: var(--font-dark);
  background: var(--bg-footer);
  font-size: 0.9rem;
  padding-top: 10px;
  padding-bottom: 10px;
  border-top: 1px solid #ced4da;
}

#footer span {
  font-weight: 600;
}

#footer i {
  color: var(--primary)
}
