/*
Theme Name: Zproblemov
Theme URI: https://www.zproblemov.sk
Author: Boldpixel
Author URI: https://www.boldpixel.cz
Description: Zproblemov
Version: 0.1.5
Text Domain: zproblemov
*/
@import url("https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,200..800&display=swap");
* {
  box-sizing: border-box;
}

:root {
  --green: #B1EC6F;
  --green-dark: #002D1E;
  --offwhite: #F7FDF2;
  --max-width-desktop: 1586px;
  --border-color: rgba(0, 45, 30, 0.10) ;
}

body {
  font-family: "Bricolage Grotesque", sans-serif !important;
  font-weight: 400;
  background: var(--offwhite);
  color: var(--green-dark);
  padding: 0;
  margin: 0;
  font-size: 17px;
}

.site-header-wrapper {
  width: 100%;
  position: fixed;
  z-index: 99;
  transition: 0.2s;
}
.site-header-wrapper .site-header {
  max-width: var(--max-width-desktop);
  margin: 0 auto;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  gap: 1rem;
  height: 90px;
}
.site-header-wrapper .site-header .nav-wrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex: 1;
  min-width: 0;
}
.site-header-wrapper .site-header .nav-wrapper #primary-menu {
  list-style-type: none;
  display: flex;
  width: 100%;
  padding: 0;
  margin: 0;
  gap: 1rem;
  align-items: center;
}
.site-header-wrapper .site-header .nav-wrapper #primary-menu .menu-item-contact {
  margin-left: auto;
}
@media (max-width: 900px) {
  .site-header-wrapper .site-header .nav-wrapper #primary-menu {
    font-size: 1.2rem;
    font-weight: 500;
    width: 100%;
  }
  .site-header-wrapper .site-header .nav-wrapper #primary-menu .menu-item-contact {
    margin-left: 0;
  }
  .site-header-wrapper .site-header .nav-wrapper #primary-menu a {
    padding: 0.5rem 0;
    display: block;
  }
  .site-header-wrapper .site-header .nav-wrapper #primary-menu a.btn {
    padding: 1rem;
  }
}
.site-header-wrapper .site-header .nav-wrapper #primary-menu a {
  text-decoration: none;
  color: var(--green-dark);
}
.site-header-wrapper .site-header .nav-wrapper #primary-menu:before {
  content: "";
  height: 30px;
  width: 1px;
  background: rgba(0, 45, 30, 0.15);
}
.site-header-wrapper .site-header .menu-container {
  flex: 1;
}
@media (max-width: 900px) {
  .site-header-wrapper .site-header .menu-container {
    padding: 1em;
    position: absolute;
    left: 0;
    top: 90px;
    width: 100%;
    background: var(--green);
    box-shadow: 0 50px 50px 0 rgba(0, 45, 30, 0.02);
  }
}
.site-header-wrapper .site-header .menu-container[hidden] {
  display: none;
}
.site-header-wrapper .site-header .hamburger {
  width: 28px;
  height: 23px;
  position: relative;
  cursor: pointer;
  z-index: 1001;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 0;
  border: 0;
  background: transparent;
}
@media (min-width: 901px) {
  .site-header-wrapper .site-header .hamburger {
    display: none;
  }
}
.site-header-wrapper .site-header .hamburger span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: #000;
  transition: all 0.1s ease-in-out;
  transform-origin: left center;
  border-radius: 10px;
}
.site-header-wrapper .site-header .hamburger.is-active span {
  background: #000;
}
.site-header-wrapper .site-header .hamburger.is-active span:nth-child(1) {
  transform: rotate(45deg);
}
.site-header-wrapper .site-header .hamburger.is-active span:nth-child(2) {
  opacity: 0;
}
.site-header-wrapper .site-header .hamburger.is-active span:nth-child(3) {
  transform: rotate(-45deg);
}
@media (max-width: 900px) {
  .site-header-wrapper .site-header {
    flex-wrap: wrap;
  }
  .site-header-wrapper .site-header .nav-wrapper {
    width: 100%;
    justify-content: space-between;
  }
  .site-header-wrapper .site-header .menu-container {
    width: 100%;
  }
  .site-header-wrapper .site-header #primary-menu {
    flex-direction: column;
    align-items: flex-start;
  }
  .site-header-wrapper .site-header #primary-menu:before {
    display: none;
  }
  .site-header-wrapper .site-header .btn.simple {
    display: none;
  }
}
.site-header-wrapper.scrolled {
  background: var(--green);
  box-shadow: 0 50px 50px 0 rgba(0, 45, 30, 0.02);
}

.bold {
  font-weight: 800;
}

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 1em;
  gap: 0.5rem;
  text-decoration: none;
  cursor: pointer;
}
.btn.primary {
  background: var(--green-dark);
  color: #fff;
  border-radius: 100px;
  text-decoration: none;
  border: none;
  padding: 0.3rem 0.3rem 0.3rem 1.5rem;
  font-weight: 500;
}
.btn.primary::after {
  content: "";
  background: url("./assets/images/cta-arrow-white.svg") no-repeat center;
  width: 50px;
  height: 50px;
  margin-left: 10px;
  background-size: contain;
  border-radius: 50%;
  transition: transform 0.2s ease;
  overflow: hidden;
}
.btn.primary:hover::after {
  transform: rotate(-45deg);
}
.btn.secondary {
  background: transparent;
  border: 2px solid var(--green-dark);
  color: var(--green-dark);
  border-radius: 100px;
  text-decoration: none;
  padding: 0.3rem 0.3rem 0.3rem 1.5rem;
  font-weight: 500;
}
.btn.secondary::after {
  content: "";
  background: url("./assets/images/cta-arrow-green.svg") no-repeat center;
  width: 50px;
  height: 50px;
  margin-left: 10px;
  background-size: contain;
  border-radius: 50%;
  transition: transform 0.2s ease;
  overflow: hidden;
}
.btn.secondary:hover::after {
  transform: rotate(-45deg);
}
.btn.simple {
  padding: 1rem;
}
.btn.simple::after {
  display: none;
}

.input-wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  background: var(--offwhite);
  position: relative;
  border-radius: 100px;
  padding: 0 20px;
  gap: 0.75rem;
}
.input-wrapper label {
  position: absolute;
  left: 56px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  transition: transform 0.2s ease, font-size 0.2s ease, top 0.2s ease, left 0.2s ease, opacity 0.2s ease;
  transform-origin: left center;
}
.input-wrapper .input-icon {
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.input-wrapper input,
.input-wrapper select {
  background: transparent;
  border: none;
  width: 100%;
  min-height: 64px;
  padding: 1rem 0 0.35rem;
  color: var(--green-dark);
  font: inherit;
}
.input-wrapper input::-moz-placeholder, .input-wrapper select::-moz-placeholder {
  opacity: 0;
}
.input-wrapper input::placeholder,
.input-wrapper select::placeholder {
  opacity: 0;
}
.input-wrapper input:focus,
.input-wrapper select:focus {
  outline: none;
}
.input-wrapper select {
  cursor: pointer;
  padding: 1rem 0.25rem;
}
.input-wrapper:has(input:not(:-moz-placeholder-shown)) label {
  top: 10px;
  left: 52px;
  transform: translateY(0);
  font-size: 0.8rem;
  opacity: 0.7;
}
.input-wrapper:focus-within label, .input-wrapper:has(input:not(:placeholder-shown)) label {
  top: 10px;
  left: 52px;
  transform: translateY(0);
  font-size: 0.8rem;
  opacity: 0.7;
}

.section-wrapper {
  position: relative;
  background: var(--offwhite);
}
.section-wrapper.green {
  background: var(--green);
}
.section-wrapper .headline {
  padding-bottom: 3rem;
}
.section-wrapper .headline .eyebrow {
  padding: 0;
  margin: 0;
}
.section-wrapper .headline h3 {
  font-size: 48px;
  margin: 0;
  padding-bottom: 2rem;
}
@media (max-width: 900px) {
  .section-wrapper .headline {
    padding-bottom: 0;
  }
  .section-wrapper .headline h3 {
    font-size: 32px;
  }
}

.section-inner {
  max-width: var(--max-width-desktop);
  margin: 0 auto;
  padding: 8em 1em;
}
@media (max-width: 900px) {
  .section-inner {
    padding: 4em 1em;
  }
}

.hero-section {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 10em;
}
@media (max-width: 900px) {
  .hero-section {
    flex-direction: column;
    text-align: center;
    padding-bottom: 1em;
  }
}
.hero-section .left {
  max-width: 40%;
}
.hero-section .left h1 {
  font-size: 84px;
  font-weight: 600;
  margin: 0;
  padding-top: 0.5rem;
}
.hero-section .left h2 {
  font-size: 1.2rem;
  font-weight: 500;
}
.hero-section .left .points-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  padding-bottom: 1rem;
}
.hero-section .left .points-wrapper .point {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--offwhite);
  color: var(--green-dark);
  padding: 0.5rem 1rem 0.5rem 0.5rem;
  border-radius: 100px;
}
.hero-section .left .spokojni-klienti {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
@media (max-width: 900px) {
  .hero-section .left {
    max-width: 100%;
  }
  .hero-section .left h1 {
    font-size: 48px;
  }
  .hero-section .left .points-wrapper {
    justify-content: center;
    flex-wrap: wrap;
  }
  .hero-section .left .spokojni-klienti {
    justify-content: center;
  }
}
.hero-section .right {
  position: relative;
}
.hero-section .right .hero-image {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.hero-section .right .marker {
  position: absolute;
  top: 5%;
  left: 35%;
}
.hero-section .right .marker .icon {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  isolation: isolate;
}
.hero-section .right .marker .icon:before {
  content: "";
  position: absolute;
  inset: -8px;
  background: #fff;
  border-radius: 50%;
  -webkit-animation: icon-pulse 2s ease-out infinite;
          animation: icon-pulse 2s ease-out infinite;
  z-index: -1;
}
.hero-section .right .marker .icon .icon-inner {
  background: var(--green-dark);
  width: 100%;
  height: 100%;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  z-index: 1;
}
.hero-section .right .marker .icon .icon-inner img {
  display: block;
}
.hero-section .right .marker .icon:after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translate(-50%, 0%);
  width: 1px;
  height: 50px;
  background: #fff;
}

.small-form-wrapper {
  max-width: var(--max-width-desktop);
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.small-form-wrapper .small-form-inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
}
.small-form-wrapper .small-form-inner .form-arrow {
  position: absolute;
  top: -100px;
  left: 50px;
  width: 85px;
  height: 85px;
  -o-object-fit: contain;
     object-fit: contain;
  z-index: 3;
}
@media (max-width: 900px) {
  .small-form-wrapper .small-form-inner .form-arrow {
    top: -40px;
    left: 25px;
    width: 70px;
    height: 70px;
  }
}
.small-form-wrapper .small-form-inner form {
  margin-bottom: -76px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1em;
}
@media (max-width: 900px) {
  .small-form-wrapper .small-form-inner form {
    margin-bottom: -150px;
  }
}
.small-form-wrapper .small-form-inner form .inputs {
  background: var(--offwhite);
  border-radius: 150px;
  padding: 0.4rem;
  box-shadow: 0 9px 25px 0 rgba(0, 45, 30, 0.05);
  display: flex;
  align-items: center;
}
@media (max-width: 900px) {
  .small-form-wrapper .small-form-inner form .inputs {
    flex-direction: column;
    border-radius: 34px;
    width: 100%;
    padding: 1rem;
  }
  .small-form-wrapper .small-form-inner form .inputs .input-wrapper {
    width: 100%;
  }
}
.small-form-wrapper .small-form-inner form .privacy-note {
  font-size: 0.8rem;
  opacity: 0.8;
  font-weight: 400;
  text-align: center;
}
.small-form-wrapper .small-form-inner form .privacy-note a {
  color: var(--green-dark);
}

.steps-section .steps-wrapper {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 2rem;
}
@media (max-width: 900px) {
  .steps-section .steps-wrapper {
    flex-direction: column;
  }
}
.steps-section .steps-wrapper .step {
  padding: 2rem;
  border-radius: 28px;
  background: #fff;
}
.steps-section .steps-wrapper .step .step-icon {
  background: var(--green);
  padding: 0.3rem;
  width: 62px;
  height: 62px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
}
.steps-section .steps-wrapper .step h4 {
  font-size: 24px;
  padding-top: 1.5rem;
  margin: 0;
}
.steps-section .steps-wrapper .step p {
  font-size: 1rem;
  opacity: 0.8;
}

.comparison-wrapper {
  padding-top: 2rem;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 4rem;
}
@media (max-width: 900px) {
  .comparison-wrapper {
    flex-direction: column-reverse;
    gap: 1rem;
  }
}
.comparison-wrapper .konkurencia {
  padding: 2rem 0;
  max-width: 40%;
}
@media (max-width: 900px) {
  .comparison-wrapper .konkurencia {
    max-width: 100%;
  }
}
.comparison-wrapper .zproblemov {
  background: var(--offwhite);
  border-radius: 28px;
  padding: 2rem;
  position: relative;
}
.comparison-wrapper .zproblemov:before {
  content: "";
  background-image: url(./assets/images/beak-green.svg);
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: 30px;
  left: -1px;
  height: 35px;
  width: 15px;
}
.comparison-wrapper .comparison-item {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 0.5rem;
  position: relative;
  padding-left: 40px;
  margin: 3rem 0;
}
.comparison-wrapper .comparison-item h5, .comparison-wrapper .comparison-item p {
  margin: 0;
  padding: 0;
  font-size: 1rem;
}
.comparison-wrapper .comparison-item p {
  padding-top: 0.2rem;
  opacity: 0.8;
}
.comparison-wrapper .comparison-item:before {
  content: "";
  background-image: url(./assets/images/check-icon.svg);
  background-size: contain;
  background-repeat: no-repeat;
  height: 28px;
  width: 28px;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

.process-wrapper {
  display: flex;
  align-items: center;
  gap: 2rem;
}
@media (max-width: 900px) {
  .process-wrapper {
    flex-direction: column;
  }
}
.process-wrapper .process-steps .process-step {
  background: #fff;
  padding: 2rem;
  border-radius: 28px;
  margin: 2rem 0;
  position: relative;
}
.process-wrapper .process-steps .process-step:after {
  content: "";
  height: 24px;
  width: 24px;
  background: #fff;
  border: 7px solid var(--offwhite);
  border-radius: 50%;
  top: 30px;
  left: -16px;
  position: absolute;
  z-index: 1;
}
.process-wrapper .process-steps .process-step:first-child:before {
  content: "";
  height: 24px;
  width: 24px;
  background: var(--green);
  border-radius: 50%;
  top: 37px;
  left: -9px;
  position: absolute;
  -webkit-animation: process-pulse 2s ease-out infinite;
          animation: process-pulse 2s ease-out infinite;
  z-index: 2;
}
.process-wrapper .process-steps .process-step:first-child:after {
  background: var(--green);
}
.process-wrapper .process-steps .process-step h5, .process-wrapper .process-steps .process-step p {
  font-size: 1rem;
  margin: 0;
  padding: 0;
}
.process-wrapper .process-steps .process-step p {
  padding-top: 0.2rem;
  opacity: 0.8;
}
.process-wrapper img {
  max-width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.faq-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
}
@media (max-width: 900px) {
  .faq-wrapper {
    flex-direction: column;
  }
}
.faq-wrapper .faq {
  width: 100%;
}
.faq-wrapper .faq details {
  width: 100%;
  border-bottom: 1px solid var(--border-color);
  transition: 0.2s;
}
.faq-wrapper .faq details:last-child {
  border-bottom: none;
}
.faq-wrapper .faq details summary {
  padding: 2rem 0;
  list-style: none;
  position: relative;
  padding-right: 48px;
  cursor: pointer;
  transition: 0.2s;
  font-weight: 500;
}
.faq-wrapper .faq details summary::-webkit-details-marker {
  display: none;
}
.faq-wrapper .faq details summary::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  transition: 0.2s;
  background: url("./assets/images/faq-arrow.svg") no-repeat center/contain;
}
.faq-wrapper .faq details .faq-content {
  font-size: 1rem;
  opacity: 0.8;
  line-height: 140%;
}
.faq-wrapper .faq details .faq-content p {
  margin-top: 0;
}
.faq-wrapper .faq details[open] summary::after {
  transform: translateY(-50%) rotate(180deg);
}
.faq-wrapper .faq details[open] summary ~ * {
  -webkit-animation: sweep 0.2s ease-in-out;
          animation: sweep 0.2s ease-in-out;
}
@media (max-width: 900px) {
  .faq-wrapper .faq-image {
    width: 100%;
    max-width: 100%;
  }
  .faq-wrapper .faq-image img {
    width: 100%;
    -o-object-fit: contain;
       object-fit: contain;
  }
}

.footer-wrapper {
  width: 100%;
  background: var(--green);
  padding: 1em;
}
.footer-wrapper footer {
  background: var(--green-dark);
  padding: 3rem;
  border-radius: 34px;
  max-width: var(--max-width-desktop);
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  position: relative;
  margin-top: -50px;
  color: var(--offwhite);
  gap: 2rem;
}
@media (max-width: 900px) {
  .footer-wrapper footer {
    flex-direction: column-reverse;
    padding: 2rem;
  }
}
.footer-wrapper footer .site-footer-branding {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  height: 100%;
}
.footer-wrapper footer .site-footer-branding .site-info p {
  font-weight: 800;
  font-size: 1.2rem;
}
.footer-wrapper footer .site-footer-branding .copyright {
  font-size: 0.9rem;
  opacity: 0.8;
}
.footer-wrapper footer .footer-content {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
}
@media (max-width: 900px) {
  .footer-wrapper footer .footer-content {
    padding-bottom: 3rem;
    flex-direction: column;
  }
}
.footer-wrapper footer .footer-content h4 {
  margin-top: 0;
}
.footer-wrapper footer .footer-content ul {
  padding: 0;
  list-style: none;
}
.footer-wrapper footer .footer-content ul a {
  text-decoration: none;
  color: var(--offwhite);
  padding: 0.5rem 0;
  display: block;
}

@-webkit-keyframes icon-pulse {
  0% {
    transform: scale(1);
    opacity: 0.9;
  }
  70% {
    transform: scale(1.18);
    opacity: 0;
  }
  100% {
    transform: scale(1.18);
    opacity: 0;
  }
}

@keyframes icon-pulse {
  0% {
    transform: scale(1);
    opacity: 0.9;
  }
  70% {
    transform: scale(1.18);
    opacity: 0;
  }
  100% {
    transform: scale(1.18);
    opacity: 0;
  }
}
@-webkit-keyframes process-pulse {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }
  70% {
    transform: scale(1.8);
    opacity: 0;
  }
  100% {
    transform: scale(1.8);
    opacity: 0;
  }
}
@keyframes process-pulse {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }
  70% {
    transform: scale(1.8);
    opacity: 0;
  }
  100% {
    transform: scale(1.8);
    opacity: 0;
  }
}
@-webkit-keyframes sweep {
  0% {
    opacity: 0;
    margin-left: -10px;
  }
  100% {
    opacity: 1;
    margin-left: 0px;
  }
}
@keyframes sweep {
  0% {
    opacity: 0;
    margin-left: -10px;
  }
  100% {
    opacity: 1;
    margin-left: 0px;
  }
}
/*# sourceMappingURL=style.css.map */