/* Description: Master CSS file */

/*****************************************
Table Of Contents:
- General Styles
- Navigation
- Header
- Features
- Details 1
- Details Modal
- Details 2
- Testimonials
- Invitation
- Pricing
- Questions
- Footer
- Copyright
- Back To Top Button
- Extra Pages
- Media Queries
******************************************/

@import url("variables.css");

/**************************/
/*     General Styles     */
/**************************/
body,
html {
  width: 100%;
  height: 100%;
}

body,
p {
  color: var(--color-text-primary);
  font:
    400 1rem/1.625rem "Open Sans",
    sans-serif;
}

h1 {
  color: var(--color-text-heading);
  font-weight: 600;
  font-size: 2.5rem;
  line-height: 3.25rem;
  letter-spacing: -0.4px;
}

h2 {
  color: var(--color-text-heading);
  font-weight: 600;
  font-size: 2rem;
  line-height: 2.625rem;
  letter-spacing: -0.4px;
}

h3 {
  color: var(--color-text-heading);
  font-weight: 600;
  font-size: 1.75rem;
  line-height: 2.25rem;
  letter-spacing: -0.2px;
}

h4 {
  color: var(--color-text-heading);
  font-weight: 600;
  font-size: 1.5rem;
  line-height: 2.125rem;
  letter-spacing: -0.2px;
}

h5 {
  color: var(--color-text-heading);
  font-weight: 600;
  font-size: 1.25rem;
  line-height: 1.625rem;
}

h6 {
  color: var(--color-text-heading);
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.375rem;
}

.p-large {
  font-size: 1.125rem;
  line-height: 1.75rem;
}

.p-small {
  font-size: 0.875rem;
  line-height: 1.5rem;
}

.testimonial-text {
  font-style: italic;
}

.testimonial-author {
  font-weight: 600;
  font-size: 1.125rem;
  line-height: 1.625rem;
}

.li-space-lg li {
  margin-bottom: 0.7rem;
}

a {
  color: var(--color-text-primary);
  text-decoration: underline;
}

a:hover {
  color: var(--color-text-primary);
  text-decoration: underline;
}

.no-line {
  text-decoration: none;
}

.no-line:hover {
  text-decoration: none;
}

.blue {
  color: var(--color-text-blue);
}

.bg-gray {
  background-color: var(--color-bg-light-gray);
}

.btn-solid-reg {
  display: inline-block;
  padding: 1.375rem 2.25rem 1.375rem 2.25rem;
  border: 1px solid var(--btn-primary-border);
  border-radius: 30px;
  background-color: var(--btn-primary-bg);
  color: var(--btn-primary-text);
  font-weight: 600;
  /* font-size: 0.875rem; */
  font-size: 1rem;
  line-height: 0;
  text-decoration: none;
  transition: all 0.2s;
}

.btn-solid-reg:hover {
  background-color: var(--btn-primary-hover-bg);
  color: var(--btn-primary-hover-text);
  border: 1px solid var(--btn-primary-hover-border);
  /* needs to stay here because of the color property of a tag */
  text-decoration: none;
}

.btn-solid-lg {
  display: inline-block;
  padding: 1.625rem 2.625rem 1.625rem 2.625rem;
  border: 1px solid var(--btn-primary-border);
  border-radius: 30px;
  background-color: var(--btn-primary-bg);
  color: var(--btn-primary-text);
  font-weight: 600;
  /* font-size: 0.875rem; */
  font-size: 1rem;
  line-height: 0;
  text-decoration: none;
  transition: all 0.2s;
}

.btn-solid-lg:hover {
  background-color: var(--btn-primary-hover-bg);
  color: var(--btn-primary-hover-text);
  /* needs to stay here because of the color property of a tag */
  text-decoration: none;
}

.btn-solid-sm {
  display: inline-block;
  padding: 1rem 1.5rem 1rem 1.5rem;
  border: 1px solid var(--btn-primary-border);
  border-radius: 30px;
  background-color: var(--btn-primary-bg);
  color: var(--btn-primary-text);
  font-weight: 600;
  font-size: 0.875rem;
  line-height: 0;
  text-decoration: none;
  transition: all 0.2s;
}

.btn-solid-sm:hover {
  background-color: var(--btn-primary-hover-bg);
  color: var(--btn-primary-hover-text);
  /* needs to stay here because of the color property of a tag */
  text-decoration: none;
}

.btn-outline-reg {
  display: inline-block;
  padding: 1.375rem 2.25rem 1.375rem 2.25rem;
  border: 1px solid var(--btn-secondary-border);
  border-radius: 30px;
  background-color: var(--btn-secondary-bg);
  color: var(--btn-secondary-text);
  font-weight: 600;
  font-size: 0.875rem;
  line-height: 0;
  text-decoration: none;
  transition: all 0.2s;
}

.btn-outline-reg:hover {
  background-color: var(--btn-secondary-hover-bg);
  color: var(--btn-secondary-hover-text);
  text-decoration: none;
}

.btn-outline-lg {
  display: inline-block;
  padding: 1.625rem 2.625rem 1.625rem 2.625rem;
  border: 1px solid var(--btn-secondary-border);
  border-radius: 30px;
  background-color: var(--btn-secondary-bg);
  color: var(--btn-secondary-text);
  font-weight: 600;
  font-size: 0.875rem;
  line-height: 0;
  text-decoration: none;
  transition: all 0.2s;
}

.btn-outline-lg:hover {
  background-color: var(--color-text-primary);
  color: var(--color-white);
  text-decoration: none;
}

.btn-outline-sm {
  display: inline-block;
  padding: 1rem 1.5rem 1rem 1.5rem;
  border: 1px solid var(--btn-secondary-border);
  border-radius: 30px;
  background-color: var(--btn-secondary-bg);
  color: var(--btn-secondary-text);
  font-weight: 600;
  font-size: 0.875rem;
  line-height: 0;
  text-decoration: none;
  transition: all 0.2s;
}

.btn-outline-sm:hover {
  background-color: var(--btn-secondary-hover-bg);
  color: var(--btn-secondary-hover-text);
  text-decoration: none;
}

.form-floating label {
  margin-left: 0.5rem;
  color: var(--color-text-light);
}

.form-floating .form-control {
  padding-left: 1.25rem;
}

.form-control-submit-button {
  display: inline-block;
  width: 100%;
  height: 3.25rem;
  border: 1px solid var(--btn-secondary-border);
  border-radius: 30px;
  background-color: var(--btn-secondary-hover-bg);
  color: var(--btn-secondary-hover-text);
  font-weight: 600;
  font-size: 0.875rem;
  line-height: 0;
  cursor: pointer;
  transition: all 0.2s;
}

.form-control-submit-button:hover {
  border: 1px solid var(--btn-secondary-border);
  background-color: var(--btn-secondary-bg);
  color: var(--btn-secondary-text);
}

/* Fade Animation For Rotating Text - ReplaceMe  */
@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.fadeIn {
  -webkit-animation: fadeIn 0.6s;
  animation: fadeIn 0.6s;
}

@-webkit-keyframes fadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

/* end of fade animation for rotating text - replaceme */

/**********************/
/*     Navigation     */
/**********************/
.navbar {
  background-color: var(--color-bg-header);
  font-weight: 600;
  /* font-size: 0.875rem;
	line-height: 0.875rem; */
  font-size: 1.1rem;
  line-height: 1.1rem;
}

.navbar .navbar-brand {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}

.navbar .logo-image img {
  width: 132px;
  height: 30px;
}

.navbar .logo-text {
  color: var(--color-text-heading);
  font-weight: 600;
  font-size: 1.2rem;
  line-height: 1.1rem;
  text-decoration: none;
   margin-bottom: 0.5rem;/
}

.navbar .logo-text a {
  color: var(--color-text-heading);
  text-decoration: none; 
}

.navbar .logo-text-sub {
  color: var(--color-text-heading);
  font-size: 1rem;
  line-height: 1.1rem;
  text-decoration: none; 
}

.navbar .logo-text-sub a {
  color: var(--color-text-heading);
  text-decoration: none; 
}

.offcanvas-collapse {
  position: fixed;
  top: 3.25rem;
  /* adjusts the height between the top of the page and the offcanvas menu */
  bottom: 0;
  left: 100%;
  width: 100%;
  padding-right: 1rem;
  padding-left: 1rem;
  overflow-y: auto;
  visibility: hidden;
  background-color: var(--color-bg-hero);
  transition:
    visibility 0.3s ease-in-out,
    -webkit-transform 0.3s ease-in-out;
  transition:
    transform 0.3s ease-in-out,
    visibility 0.3s ease-in-out;
  transition:
    transform 0.3s ease-in-out,
    visibility 0.3s ease-in-out,
    -webkit-transform 0.3s ease-in-out;
}

.offcanvas-collapse.open {
  visibility: visible;
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
}

.navbar .navbar-nav {
  margin-top: 0.75rem;
  margin-bottom: 0.5rem;
}

.navbar .nav-item .nav-link {
  padding-top: 0.625rem;
  padding-bottom: 0.625rem;
  color: var(--color-text-heading);
  text-decoration: none;
  transition: all 0.2s ease;
}

/* .navbar .nav-item.dropdown.show .nav-link,
.navbar .nav-item .nav-link:hover,
.navbar .nav-item .nav-link.active {
  color: var(--color-text-accent);
} */

.navbar .nav-item .nav-link:hover {
  color: var(--color-text-accent);
}

/* Dropdown Menu */
.navbar .dropdown .dropdown-menu {
  animation: fadeDropdown 0.2s;
  /* required for the fade animation */
}

@keyframes fadeDropdown {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.navbar .dropdown-menu {
  margin-top: 0.25rem;
  margin-bottom: 0.25rem;
  border: none;
  background-color: var(--color-bg-header);
}

.navbar .dropdown-item {
  padding-top: 0.625rem;
  padding-bottom: 0.625rem;
  color: var(--color-text-heading);
  font-weight: 600;
  /* font-size: 0.875rem;
	line-height: 0.875rem; */
  font-size: 1.1rem;
  line-height: 1.1rem;
  text-decoration: none;
}

.navbar .dropdown-item:hover {
  background-color: var(--color-bg-header);
  color: var(--color-text-accent);
}

.navbar .dropdown-divider {
  width: 100%;
  height: 1px;
  margin: 0.5rem auto 0.5rem auto;
  border: none;
  background-color: var(--color-border-gray);
}

/* end of dropdown menu */

.navbar .navbar-toggler {
  padding: 0;
  border: none;
  font-size: 1.25rem;
}

/******************/
/*     Header     */
/******************/
.header {
  padding-top: 8rem;
  padding-bottom: 9rem;
  background-color: var(--color-bg-hero);
  text-align: center;
}

.header .h1-large {
  margin-bottom: 1.25rem;
}

.header .replace-me {
  color: var(--color-text-accent);
}

.header .replace-me span {
  text-decoration: underline;
}

.header .p-large {
  margin-bottom: 2.75rem;
}

.header .btn-solid-lg {
  display: block;
  margin-bottom: 1.75rem;
}

.header .text-container {
  margin-bottom: 5rem;
}

/* Contact spacer */
#contact-spacer{
  padding-top: 8rem;
  padding-bottom: 8rem;
  background-color: var(--color-bg-hero);
}

/********************/
/*     Features     */
/********************/
.cards-1 {
  padding-top: var(--section-padding-top);
  padding-bottom: var(--section-padding-bottom);
  /* text-align: center; */
}

.cards-1 .h2-heading {
  margin-bottom: 3.75rem;
}

.cards-1 .h2-heading span {
  color: var(--color-text-accent);
  text-decoration: underline;
}

.cards-1 .text-container {
  margin-bottom: 4rem;
}

.cards-1 h2 {
  margin-bottom: 1.875rem;
}

.cards-1 p {
  margin-bottom: 1.875rem;
}

.cards-1 .card {
  /* margin-top: 4rem; */
  /* margin-bottom: 5rem; */
  border: none;
  /* background-color: transparent; */
  background-color: var(--bs-body-bg);
  text-align: center;
  padding: 1.5rem;
}

.cards-1 .card-icon {
  width: 76px;
  height: 76px;
  margin-right: auto;
  margin-bottom: 2.5rem;
  margin-left: auto;
  border-radius: 10px;
  background-color: var(--color-bg-purple-light);
}

.cards-1 .card-icon .fas,
.cards-1 .card-icon .far {
  color: var(--color-interactive-purple);
  font-size: 2.5rem;
  line-height: 76px;
}

.cards-1 .card-icon.green {
  background-color: var(--color-bg-green-light);
}

.cards-1 .card-icon.green .fas,
.cards-1 .card-icon.green .far {
  color: var(--color-interactive-green);
}

.cards-1 .card-icon.blue {
  background-color: var(--color-bg-blue-light);
}

.cards-1 .card-icon.blue .fas,
.cards-1 .card-icon.blue .far {
  color: var(--color-interactive-blue);
}

.cards-1 .card-body {
  padding: 0;
}

.cards-1 .card-title {
  margin-bottom: 1rem;
  min-height: 3em; /* z.B. für 2 Zeilen bei Standard-Schriftgröße */
}

.cards-1 .card-body p {
  margin-bottom: 1.125rem;
  margin-top: 0.5rem; /* Abstand nach der Überschrift */
}

.cards-1 .offer-image {
  margin-bottom: 2.5rem;
}

.cards-1 .offer-image img {
  max-width: 75%;
  height: auto;
}

/*********************/
/*     Details 1     */
/*********************/
.basic-1 {
  padding-top: var(--section-padding-top);
  padding-bottom: var(--section-padding-bottom);
}

.basic-1 .text-container {
  margin-bottom: 4rem;
}

.basic-1 h2 {
  margin-bottom: 1.875rem;
}

.basic-1 p {
  margin-bottom: 1.875rem;
}

.basic-1 .btn-solid-reg {
  cursor: pointer;
}

/*********************/
/*     Details 2     */
/*********************/
.basic-2 {
  padding-top: var(--section-padding-top);
  padding-bottom: var(--section-padding-bottom);
}

.basic-2 .image-container {
  margin-bottom: 5rem;
}

.basic-2 h2 {
  margin-bottom: 1.875rem;
}

/*********************/
/*    Lists     */
/*********************/

.list-unstyled .fas {
  font-size: 0.375rem;
  line-height: 1.625rem;
}

.list-unstyled .flex-grow-1 {
  margin-left: 0.5rem;
}

/************************/
/*     Testimonials     */
/************************/
.slider-1 {
  padding-top: var(--section-padding-top);
  padding-bottom: var(--section-padding-bottom);
}

.slider-1 .section-title {
  text-align: center;
}

.slider-1 h2 {
  margin-bottom: 1.875rem;
}

.slider-1 .h2-heading {
  margin-bottom: 3rem;
  text-align: center;
}

.slider-1 .slider-container {
  position: relative;
}

.slider-1 .swiper {
  position: static;
  width: 86%;
  text-align: center;
}

.slider-1 .swiper-button-prev:focus,
.slider-1 .swiper-button-next:focus {
  /* even if you can't see it chrome you can see it on mobile device */
  outline: none;
}

.slider-1 .swiper-button-prev {
  --swiper-navigation-color: #707375;
  --swiper-navigation-size: 28px;
  left: -12px;
}

.slider-1 .swiper-button-next {
  --swiper-navigation-color: #707375;
  --swiper-navigation-size: 28px;
  right: -12px;
}

.slider-1 .card {
  position: relative;
  border: none;
  background-color: transparent;
}

.slider-1 .card-image {
  width: 80px;
  height: 80px;
  margin-right: auto;
  margin-bottom: 1.25rem;
  margin-left: auto;
  border-radius: 50%;
  background-color: var(--color-bg-light-gray);
}

.slider-1 .card-body {
  padding: 0;
}

.slider-1 .testimonial-text {
  /* margin-bottom: 1rem; */
  margin-bottom: 0rem;
}

.slider-1 .testimonial-author {
  /* margin-bottom: 0; */
  margin-bottom: 1rem;
  color: var(--color-text-dark);
}

#kundenstimmen .testimonial-text {
  margin-bottom: 1rem;
  text-align: left;
}

#kundenstimmen .testimonial-project {
  color: var(--color-text-blue);
  padding-bottom: 2rem;
}

/**********************/
/*     Invitation     */
/**********************/
.basic-3 {
  padding-top: 9rem;
  padding-bottom: 9rem;
  background-color: var(--color-bg-dark);
  text-align: center;
}

.basic-3 h4 {
  margin-bottom: 2.375rem;
  color: var(--color-white);
}

.basic-3 .btn-outline-lg {
  border-color: var(--color-white);
  color: var(--color-white);
}

.basic-3 .btn-outline-lg:hover {
  background-color: var(--color-white);
  color: var(--color-text-heading);
}

/*******************/
/*     Pricing     */
/*******************/
.cards-2 {
  padding-top: 9rem;
  padding-bottom: 5.25em;
}

.cards-2 .h2-heading {
  margin-bottom: 3.75rem;
  text-align: center;
}

.cards-2 .card {
  margin-bottom: 5rem;
  padding: 4rem 1rem;
  border: 1px solid var(--color-border-light);
  border-radius: 20px;
  background-color: var(--color-white);
  text-align: center;
}

.cards-2 .card-body {
  padding: 0;
}

.cards-2 .card-title {
  margin-bottom: 2rem;
}

.cards-2 .card-title .decoration-lines {
  width: 30px;
  margin-bottom: 0.25rem;
}

.cards-2 .card-title .decoration-lines.flipped {
  transform: scaleX(-1);
}

.cards-2 .card-title span {
  margin-right: 0.75rem;
  margin-left: 0.75rem;
  color: var(--color-text-heading);
  font-weight: 600;
  font-size: 1.75rem;
  line-height: 2rem;
  letter-spacing: -0.2px;
}

.cards-2 .card-body .list-unstyled {
  margin-bottom: 3rem;
}

.cards-2 .card-body .list-unstyled li {
  margin-bottom: 0.625rem;
}

.cards-2 .card-body .price {
  margin-bottom: 3rem;
  color: var(--color-text-heading);
  font-weight: 600;
  font-size: 3.5rem;
  line-height: 2rem;
  letter-spacing: -0.2px;
}

.cards-2 .card-body .price span {
  font-weight: 400;
  font-size: 1rem;
  line-height: 0;
}

/*********************/
/*     Questions     */
/*********************/
.accordion-1 {
  padding-top: 9rem;
  padding-bottom: 9rem;
}

.accordion-1 .h2-heading {
  margin-bottom: 1.5rem;
  text-align: center;
}

.accordion-1 .accordion-item {
  padding-bottom: 1rem;
  border: none;
  border-bottom: 1px solid var(--color-border-medium);
}

.accordion-1 .accordion-header {
  width: 100%;
}

.accordion-1 .accordion-button {
  width: auto;
  padding-top: 2rem;
  padding-left: 0;
  background: none;
  box-shadow: none;
  font-weight: 600;
  font-size: 1.15rem;
  line-height: 1.625rem;
}

.accordion-1 .accordion-button:not(.collapsed) {
  color: var(--color-text-dark);
}

.accordion-1 .accordion-button::after,
.accordion-1 .accordion-button:not(.collapsed)::after {
  display: none;
}

.accordion-1 .accordion-button:not(.collapsed)::before {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 436.686 265.011'%3e%3cdefs%3e%3cstyle%3e.cls-1%7bfill:%23272556;%7d%3c/style%3e%3c/defs%3e%3ctitle%3echevron-down-solid-1%3c/title%3e%3cpath class='cls-1' d='M201.373,257.982L7.03,63.638a24,24,0,0,1,0-33.941L29.7,7.03a24,24,0,0,1,33.9-.04L218.344,161.011,373.089,6.99a24,24,0,0,1,33.9.04L429.657,29.7a24,24,0,0,1,0,33.941L235.315,257.982a24,24,0,0,1-33.942,0h0Z'/%3e%3c/svg%3e");
  transform: rotate(-180deg);
}

.accordion-1 .accordion-button::before {
  align-self: flex-start;
  flex-shrink: 0;
  width: 1.125rem;
  height: 0.75rem;
  margin-top: 0.5rem;
  margin-right: 0.75rem;
  margin-left: auto;
  content: "";
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 436.686 265.011'%3e%3cdefs%3e%3cstyle%3e.cls-1%7bfill:%23272556;%7d%3c/style%3e%3c/defs%3e%3ctitle%3echevron-down-solid-1%3c/title%3e%3cpath class='cls-1' d='M201.373,257.982L7.03,63.638a24,24,0,0,1,0-33.941L29.7,7.03a24,24,0,0,1,33.9-.04L218.344,161.011,373.089,6.99a24,24,0,0,1,33.9.04L429.657,29.7a24,24,0,0,1,0,33.941L235.315,257.982a24,24,0,0,1-33.942,0h0Z'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-size: 1.125rem;
  transition: transform 0.2s ease-in-out;
}

.accordion-1 .accordion-body {
  padding-top: 0;
  padding-left: 1.875rem;
  padding-bottom: 1.125rem;
}

/******************/
/*     Footer     */
/******************/
.footer {
  padding-top: 4rem;
  padding-bottom: 2rem;
  background-color: var(--color-bg-dark);
}

.footer a {
  color: var(--color-white);
  text-decoration: none;
}

.footer .footer-col {
  margin-bottom: 3rem;
}

.footer h6 {
  margin-bottom: 0.625rem;
  color: var(--color-white);
  opacity: 0.8;
}

.footer p,
.footer ul {
  color: var(--color-white);
  opacity: 0.8;
}

.footer .li-space-lg li {
  margin-bottom: 0.375rem;
}

.footer .footer-col.third .fa-stack {
  width: 2em;
  margin-bottom: 1.25rem;
  margin-right: 0.375rem;
  font-size: 1.375rem;
}

.footer .footer-col.third .fa-stack .fa-stack-2x {
  color: var(--color-white);
  transition: all 0.2s ease;
}

.footer .footer-col.third .fa-stack .fa-stack-1x {
  color: var(--color-text-heading);
  transition: all 0.2s ease;
}

.footer .footer-col.third .fa-stack:hover .fa-stack-2x {
  color: var(--color-text-heading);
}

.footer .footer-col.third .fa-stack:hover .fa-stack-1x {
  color: var(--color-white);
}

/*********************/
/*     Copyright     */
/*********************/
.copyright {
  padding-bottom: 1rem;
  background-color: var(--color-bg-dark);
  text-align: center;
}

.copyright p,
.copyright a {
  color: var(--color-white);
  text-decoration: none;
}

.copyright p {
  opacity: 0.8;
}

/******************************/
/*     Back To Top Button     */
/******************************/
#myBtn {
  position: fixed;
  z-index: 99;
  bottom: 20px;
  right: 20px;
  display: none;
  width: 52px;
  height: 52px;
  border: none;
  border-radius: 50%;
  outline: none;
  background-color: var(--color-bg-gray-dark);
  cursor: pointer;
}

#myBtn:hover {
  background-color: var(--color-bg-black);
}

#myBtn img {
  margin-bottom: 0.25rem;
  width: 18px;
}

/***********************/
/*     Extra Pages     */
/***********************/
.ex-header {
  padding-top: 9rem;
  padding-bottom: 5rem;
  background-color: var(--color-bg-hero);
}

.ex-basic-1 .list-unstyled .fas {
  font-size: 0.375rem;
  line-height: 1.625rem;
}

.ex-basic-1 .list-unstyled .flex-grow-1 {
  margin-left: 0.5rem;
}

.ex-basic-1 .text-box {
  padding: 1.25rem 1.25rem 0.5rem 1.25rem;
  background-color: var(--color-bg-light-gray);
}

.ex-cards-1 .card {
  border: none;
  background-color: transparent;
}

.ex-cards-1 .card .fa-stack {
  width: 2em;
  font-size: 1.125rem;
}

.ex-cards-1 .card .fa-stack-2x {
  color: var(--color-text-accent);
}

.ex-cards-1 .card .fa-stack-1x {
  width: 2em;
  color: var(--color-white);
  font-weight: 600;
  line-height: 2.125rem;
}

.ex-cards-1 .card .list-unstyled .flex-grow-1 {
  margin-left: 2.25rem;
}

.ex-cards-1 .card .list-unstyled .flex-grow-1 h5 {
  margin-top: 0.125rem;
  margin-bottom: 0.5rem;
}

/*************************/
/*     Media Queries     */
/*************************/
/* Min-width 768px */
@media (min-width: 768px) {
  /* Header */
  .header {
    padding-top: 9rem;
  }

  .header .h1-large {
    font-size: 3.75rem;
    line-height: 4.625rem;
  }

  /* end of header */

  /* Extra Pages */
  .ex-basic-1 .text-box {
    padding: 1.75rem 2rem 0.875rem 2rem;
  }

  /* end of extra pages */
}

/* end of min-width 768px */

/* Min-width 992px */
@media (min-width: 992px) {
  /* General Styles */
  .h2-heading {
    width: 40rem;
    margin-right: auto;
    margin-left: auto;
  }

  .p-heading {
    width: 46rem;
    margin-right: auto;
    margin-left: auto;
  }

  /* end of general styles */

  /* Navigation */
  .navbar {
    padding-top: 1.75rem;
    background-color: var(--color-bg-header);
    box-shadow: none;
    transition: all 0.2s;
  }

  .navbar.extra-page {
    padding-top: 0.5rem;
  }

  .navbar.top-nav-collapse {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    background-color: var(--color-bg-header);
  }

  .offcanvas-collapse {
    position: static;
    top: auto;
    bottom: auto;
    left: auto;
    width: auto;
    padding-right: 0;
    padding-left: 0;
    background-color: transparent;
    overflow-y: visible;
    visibility: visible;
  }

  .offcanvas-collapse.open {
    -webkit-transform: none;
    transform: none;
  }

  .navbar .navbar-nav {
    margin-top: 0;
    margin-bottom: 0;
  }

  .navbar .nav-item .nav-link {
    padding-right: 0.75rem;
    padding-left: 0.75rem;
  }

  .navbar .dropdown-menu {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
    box-shadow: 0 3px 3px 1px rgba(0, 0, 0, 0.08);
  }

  .navbar .dropdown-divider {
    width: 90%;
  }

  .navbar .nav-item .btn-outline-sm {
    margin-top: 0;
    margin-left: 0.625rem;
  }

  /* end of navigation */

  /* Header */
  .header {
    padding-top: 12rem;
    padding-bottom: 12rem;
    text-align: left;
  }

  .header .text-container {
    margin-bottom: 0;
  }

  .header .btn-solid-lg {
    display: inline-block;
    margin-bottom: 0;
  }

  /* end of header */

  /* Features */
  .cards-1 .card {
    display: inline-block;
    width: 286px;
    vertical-align: top;
  }

  .cards-1 .card:nth-of-type(3n + 2) {
    margin-right: 2rem;
    margin-left: 2rem;
  }

  /* end of features */

  /* Details 1 */
  .basic-1 .text-container {
    margin-bottom: 0;
  }

  /* end of details 1 */

  /* Details 2 */
  /* .basic-2 {
    padding-bottom: 10rem;
  } */

  .basic-2 .image-container {
    margin-bottom: 0;
  }

  /* end of details 2 */

  /* Testimonials */
  .slider-1 .swiper {
    width: 92%;
  }

  .slider-1 .swiper-button-prev {
    left: -16px;
    --swiper-navigation-size: 24px;
  }

  .slider-1 .swiper-button-next {
    right: -16px;
    --swiper-navigation-size: 24px;
  }

  /* end of testimonials */

  /* Invitation */
  .basic-3 h4 {
    width: 44rem;
    margin-right: auto;
    margin-left: auto;
  }

  /* end of invitation */

  /* Pricing */
  .cards-2 .card {
    display: inline-block;
    width: 298px;
    vertical-align: top;
  }

  .cards-2 .card:nth-of-type(3n + 2) {
    margin-right: 1rem;
    margin-left: 1rem;
  }

  /* end of pricing */

  /* Questions */
  .accordion-1 .accordion {
    width: 820px;
    margin-right: auto;
    margin-left: auto;
  }

  /* end of questions */

  /* Footer */
  .footer .footer-col {
    margin-bottom: 2rem;
  }

  .footer .footer-col.first {
    display: inline-block;
    width: 320px;
    margin-right: 1.75rem;
    vertical-align: top;
  }

  .footer .footer-col.second {
    display: inline-block;
    width: 320px;
    margin-right: 1.75rem;
    vertical-align: top;
  }

  .footer .footer-col.third {
    display: inline-block;
    width: 224px;
    text-align: right;
    vertical-align: top;
  }

  .footer .footer-col.third .fa-stack {
    margin-right: 0;
    margin-left: 0.375rem;
  }

  /* end of footer */

  /* Extra Pages */
  .ex-cards-1 .card {
    display: inline-block;
    width: 296px;
    vertical-align: top;
  }

  .ex-cards-1 .card:nth-of-type(3n + 2) {
    margin-right: 1rem;
    margin-left: 1rem;
  }

  /* end of extra pages */
}

/* end of min-width 992px */

/* Min-width 1200px */
@media (min-width: 1200px) {
  /* General Styles */
  .container {
    max-width: 1140px;
  }

  /* end of general styles */

  /* Header */
  .header {
    overflow: hidden;
    padding-top: 18.5rem;
    padding-bottom: 18rem;
  }

  .header .image-container {
    position: relative;
  }

  .header .image-container img {
    position: absolute;
    /* top: -180px;
    left: -10px;
    width: 640px; */
    width: 640px;
    max-width: none;
  }

  /* end of header */

  /* Features */
  .cards-1 .card {
    width: 310px;
  }

  .cards-1 .card:nth-of-type(3n + 2) {
    margin-right: 5.5rem;
    margin-left: 5.5rem;
  }

  /* end of features */

  /* Details 1 */
  /* .basic-1 .text-container {
    margin-top: 4rem;
  } */

  .basic-1 h2 {
    margin-right: 4rem;
  }

  .basic-1 .image-container {
    margin-left: 4rem;
  }

  /* end of details 1 */

  /* Details Modal */
  .modal-content {
    padding-right: 2rem;
    padding-left: 2rem;
  }

  /* end of details modal */

  /* Details 2 */
  .basic-2 .text-container {
    margin-top: 8rem;
    margin-left: 5rem;
  }

  /* end of details 2 */

  /* Testimonials */
  .slider-1 .swiper {
    width: 96%;
  }

  .slider-1 .swiper-button-prev {
    left: -28px;
  }

  .slider-1 .swiper-button-next {
    right: -28px;
  }

  /* end of testimonials */

  /* Pricing */
  .cards-2 .card {
    width: 342px;
  }

  .cards-2 .card:nth-of-type(3n + 2) {
    margin-right: 2.5rem;
    margin-left: 2.5rem;
  }

  /* end of pricing */

  /* Footer */
  .footer .footer-col.first {
    width: 352px;
    margin-right: 6rem;
  }

  .footer .footer-col.second {
    margin-right: 6.5rem;
  }

  .footer .footer-col.third {
    text-align: right;
  }

  /* end of footer */

  /* Extra Pages */
  .ex-cards-1 .card {
    width: 336px;
  }

  .ex-cards-1 .card:nth-of-type(3n + 2) {
    margin-right: 2.875rem;
    margin-left: 2.875rem;
  }

  /* end of extra pages */
}

/* end of min-width 1200px */
