@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
}

html, body {
  scroll-behavior: smooth;
}

.info__banner {
  padding: 0.5rem 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #F9ED00;
}
.info__banner span {
  font-size: 0.9em;
  font-weight: 600;
  text-align: center;
}

header {
  background: #1c4132;
  z-index: 150;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
  position: sticky;
  top: 0;
  left: 0;
}
header .header__top {
  height: 5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 5%;
}
header .header__top .logo {
  font-size: 2em;
  display: flex;
  justify-content: center;
  align-items: center;
}
header .header__top .logo a {
  color: #000;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
}
header .header__top .logo a img {
  height: 4rem;
}
header .header__top .header__contacts {
  display: flex;
  justify-content: end;
  align-items: center;
  gap: 4rem;
}
header .header__top .header__contacts .item {
  color: #000;
  text-decoration: none;
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 1rem;
}
header .header__top .header__contacts .item .icon {
  height: 41px;
  width: 41px;
  background: rgb(67, 148, 34);
  background: linear-gradient(0deg, rgb(67, 148, 34) 35%, rgb(137, 218, 104) 100%);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
header .header__top .header__contacts .item .icon svg {
  color: #fff;
  height: 21px;
  width: 21px;
  stroke-width: 2.5;
}
header .header__top .header__contacts .item .text {
  display: flex;
  justify-content: center;
  align-items: start;
  flex-flow: column;
}
header .header__top .header__contacts .item .text span {
  font-size: 0.8em;
}
header .header__top .header__contacts .item .text * {
  color: #fff;
}
header .header__top .ham {
  display: none;
  justify-content: center;
  align-items: center;
  background: none;
  border: none;
}
header .header__top .ham svg {
  height: 35px;
  width: 35px;
  color: rgb(67, 148, 34);
  stroke-width: 2.5;
}
header .header__top .logout__btn {
  background: none;
  border: none;
}
header .header__top .logout__btn a {
  color: #000;
  text-decoration: none;
}
header .header__top .logout__btn a svg {
  color: #000;
  height: 30px;
  width: 30px;
}
header .header__bottom {
  padding: 1rem 5%;
  background: rgb(95, 181, 60);
}
header .header__bottom nav {
  display: flex;
  justify-content: space-around;
  align-items: center;
}
header .header__bottom nav a {
  color: #fff;
  font-size: 0.9em;
  font-weight: 500;
  text-decoration: none;
  position: relative;
}
header .header__bottom nav a::after {
  content: "";
  height: 1px;
  width: 0;
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  transition: 0.25s ease;
}
header .header__bottom nav a:hover::after, header .header__bottom nav a.active::after {
  width: 70%;
}

.offcanvas {
  display: none;
  justify-content: center;
  align-items: center;
  flex-flow: column wrap;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  transform: translateX(100%);
  transition: 0.5s ease-in-out;
  z-index: 160;
  background: rgb(67, 148, 34);
  background: linear-gradient(180deg, rgba(44, 99, 23, 0.8) 0%, rgba(92, 159, 65, 0.8) 90%);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}
.offcanvas #close__offcanvas {
  position: absolute;
  top: 25px;
  right: 25px;
  background: none;
  border: none;
}
.offcanvas #close__offcanvas svg {
  height: 35px;
  width: 35px;
  color: #fff;
  stroke-width: 2.5;
}
.offcanvas a {
  display: block;
  width: 80%;
  text-align: center;
  color: #fff;
  padding: 1rem 0;
  font-size: 1em;
  text-decoration: none;
  border-bottom: 2px solid #fff;
}
.offcanvas a:last-child {
  border-bottom: none;
}
.offcanvas .offcanvas-active {
  text-decoration: underline;
}

@media only screen and (max-width: 1300px) {
  header .header__top .logo a img {
    height: 2.5rem;
  }
  header .header__top .header__contacts .item .icon {
    height: 35px;
    width: 35px;
  }
  header .header__top .header__contacts .item .icon svg {
    height: 17px;
    width: 17px;
  }
  header .header__top .header__contacts .item .text span {
    font-size: 0.7em;
  }
  header .header__top .header__contacts .item .text b {
    font-size: 0.9em;
  }
  header .header__bottom {
    padding: 1rem 2.5%;
  }
  header .header__bottom nav a {
    font-size: 0.65em;
  }
}
@media only screen and (max-width: 900px) {
  header .header__top .header__contacts {
    display: none;
  }
  header .header__top .ham {
    display: flex;
  }
  header .header__bottom {
    display: none;
  }
}
@media only screen and (max-width: 700px) {
  .info__banner span {
    font-size: 0.7em;
  }
  header .header__top .logo a img {
    height: 2rem;
  }
  .offcanvas {
    display: flex;
  }
}
.btn {
  border: none;
  background: none;
  transition: 0.25s ease;
}
.btn.white a {
  background: #fff;
  color: #61B240;
}
.btn a {
  font-size: 1em;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  color: #fff;
  border-radius: 10px;
  text-decoration: none;
  padding: 0.75em 1.5em;
  font-weight: 500;
  transition: 0.2s ease;
  background: rgb(67, 148, 34);
  background: linear-gradient(0deg, rgb(67, 148, 34) 35%, rgb(137, 218, 104) 100%);
  cursor: pointer;
}
.btn:hover {
  transform: scale(1.05);
}

footer {
  background: #61BB3D;
  padding: 3rem 10%;
  display: flex;
  justify-content: space-between;
  align-items: start;
  position: relative;
  z-index: 5;
}
footer .footer__contacts {
  display: flex;
  justify-content: start;
  align-items: start;
  flex-flow: column;
  row-gap: 1rem;
}
footer .footer__contacts .logo {
  height: 60px;
  transform: translateY(-10px);
}
footer .footer__contacts .link {
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}
footer .footer__contacts .link svg {
  height: 1.35em;
  width: 1.35em;
}
footer .middle {
  width: 30%;
}
footer .middle h3 {
  font-size: 1.75em;
  color: #fff;
  font-weight: 500;
  margin-bottom: 1rem;
  text-align: center;
}
footer .middle .links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 25px;
}
footer .middle .links .link {
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}
footer .middle .links .link svg {
  height: 1.35em;
  width: 1.35em;
}
footer .middle .footer__certificates {
  margin-top: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: row wrap;
  width: 100%;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}
footer .middle .footer__certificates img {
  flex: 0 0 25%;
  flex-grow: 0;
  flex-shrink: 0;
  flex-basis: 25%;
  max-width: 25%;
}
footer .middle .footer__certificates img.width {
  flex: 0 0 35%;
}
footer .footer__nav {
  display: flex;
  justify-content: start;
  align-items: start;
  flex-flow: column;
  row-gap: 1rem;
}
footer .footer__nav h3 {
  font-size: 1.75em;
  color: #fff;
  font-weight: 500;
}
footer .footer__nav a {
  font-size: 1em;
  color: #fff;
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  position: relative;
}
footer .footer__nav a svg {
  height: 1.35em;
  width: 1.35em;
  color: rgb(67, 148, 34);
  stroke-width: 3;
}
footer .footer__nav a:hover {
  transform: scale(1.025);
}

@media only screen and (max-width: 1300px) {
  footer {
    padding: 3rem 5%;
  }
  footer .footer__contacts .logo {
    height: 45px;
  }
  footer .footer__contacts .link {
    font-size: 14px;
  }
  footer .middle h3 {
    font-size: 1.5em;
  }
  footer .middle .links .link {
    font-size: 14px;
  }
  footer .footer__nav h3 {
    font-size: 1.5em;
  }
  footer .footer__nav a {
    font-size: 14px;
  }
}
@media only screen and (max-width: 850px) {
  footer {
    flex-flow: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
  }
  footer .footer__contacts .logo {
    height: 50px;
  }
  footer .footer__contacts p {
    font-size: 0.7em;
  }
  footer .middle {
    width: 50%;
  }
  footer .right a {
    font-size: 1em;
  }
}
@media only screen and (max-width: 700px) {
  footer .middle {
    width: 80%;
  }
}
.subheading {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 0.75rem;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.subheading .green {
  padding: 10px 20px;
  background: rgb(67, 148, 34);
  background: linear-gradient(0deg, rgb(67, 148, 34) 35%, rgb(137, 218, 104) 100%);
  color: #fff;
  border-radius: 7px;
  font-size: 0.9em;
}
.subheading span {
  font-size: 0.9em;
  color: #fff;
}

.h1 {
  font-size: 3em;
  color: #fff;
  line-height: 1em;
  letter-spacing: 3px;
}

@media only screen and (max-width: 1550px) {
  .h1 {
    font-size: 3em;
  }
}
@media only screen and (max-width: 1300px) {
  .h1 {
    font-size: 2.5em;
  }
  .subheading .green {
    padding: 5px 10px;
    font-size: 0.7em;
    text-align: center;
  }
  .subheading span {
    font-size: 0.7em;
  }
}
@media only screen and (max-width: 900px) {
  .h1 {
    font-size: 2.15em;
  }
}
@media only screen and (max-width: 700px) {
  .h1 {
    font-size: 1.8em;
    letter-spacing: 0;
  }
}
.collabs {
  width: 100%;
  padding: 2rem 5%;
}
.collabs .collabs__content {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: row wrap;
}
.collabs .collabs__content a {
  display: block;
  width: 10%;
}
.collabs .collabs__content a img {
  width: 100%;
  filter: grayscale(100%); /* Fotka bude černobílá */
  transition: filter 0.3s ease;
}
.collabs .collabs__content a img:hover {
  filter: grayscale(0%);
}

@media only screen and (max-width: 700px) {
  .collabs .collabs__content a {
    width: 33%;
  }
}
#cookies__bar {
  padding: 2rem 5%;
  background: rgba(0, 0, 0, 0.65);
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 50;
}
#cookies__bar .text {
  width: 50vw;
}
#cookies__bar .text h3 {
  font-size: 1.35em;
  color: #fff;
}
#cookies__bar .text p {
  font-size: 0.9em;
  color: #fff;
}
#cookies__bar .text p a {
  color: #61BB3D;
}
#cookies__bar .btn {
  cursor: pointer;
}

@media only screen and (max-width: 1300px) {
  #cookies__bar .text h3 {
    font-size: 1em;
  }
  #cookies__bar .text p {
    font-size: 0.7em;
  }
  #cookies__bar .btn a {
    font-size: 0.9em;
  }
}
@media only screen and (max-width: 700px) {
  #cookies__bar {
    flex-flow: column;
    align-items: start;
    row-gap: 1rem;
  }
  #cookies__bar .text {
    width: 100%;
  }
}
.title {
  position: relative;
}
.title .title__content {
  position: relative;
  overflow: hidden;
  height: calc(100vh - 16rem);
  min-height: 450px;
  max-height: 550px;
  width: 100%;
  background: url("../../img/title.png");
  background-size: cover;
  padding: 4rem 15% 6rem;
  display: grid;
  grid-template-columns: 0.65fr 0.35fr;
  gap: 4rem;
}
.title .title__content.rodinnedomy {
  background: url("../../img/Frame 38.png");
  background-size: cover;
}
.title .title__content.obce {
  background: url("../../img/Frame 47.png");
  background-size: cover;
}
.title .title__content.obcereal {
  background: url("../../img/Frame 45.png");
  background-size: cover;
}
.title .title__content.chytra-fotovoltaika {
  background: url("../../img/chytra-fotovoltaika.png");
  background-size: cover;
}
.title .title__content.pozarni-ochrana {
  background: url("../../img/title.png");
  background-size: cover;
}
.title .title__content.rodinnedomy, .title .title__content.obce, .title .title__content.pozarni-ochrana, .title .title__content.obcereal {
  height: auto;
}
.title .title__content.servis {
  height: auto;
  min-height: 0;
  max-height: none;
  background: url("../../img/Frame 46.png");
  background-size: cover;
}
.title .title__content.manual {
  height: auto;
  max-height: none;
  background: url("../../img/Frame 46.png");
  background-size: cover;
}
.title .title__content .text {
  display: flex;
  justify-content: center;
  align-items: start;
  flex-flow: column;
}
.title .title__content .text .yellow {
  color: #fff;
}
.title .title__content .text p {
  margin-top: 1rem;
  color: #fff;
  line-height: 1.65em;
  font-weight: 300;
}
.title .title__content .text .buttons {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 25px;
  margin-top: 2rem;
}
.title .title__content .text .btn a {
  font-size: 1.35em;
}
.title .title__content .text .ebook-link {
  color: #fff;
  font-size: 19px;
}
.title .title__content .reviews__bar {
  display: flex;
  justify-content: start;
  align-items: end;
  flex-flow: column;
  row-gap: 0.75rem;
}
.title .title__content .reviews__bar a:hover {
  transform: scale(1.05);
}
.title .title__content .reviews__bar a img {
  width: 8rem;
  height: auto;
}
.title .services {
  position: absolute;
  bottom: 0;
  left: 15vw;
  width: 70vw;
  transform: translateY(50%);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.title .services .item {
  position: relative;
  border: 2px solid #61B240;
  width: 100%;
}
.title .services .item:hover {
  border: 2px solid rgb(101.0884297521, 185.5024793388, 66.6975206612);
}
.title .services .item:hover::after {
  opacity: 0.2;
}
.title .services .item.active::after {
  opacity: 0.5;
}
.title .services .item::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  transition: 0.5s ease;
}
.title .services .item img {
  width: 100%;
  min-height: 100%;
  height: 10rem;
}
.title .services .item h2 {
  position: absolute;
  bottom: 15px;
  left: 15px;
  font-size: 1.5em;
  padding-right: 20px;
  color: #fff;
  z-index: 2;
  font-weight: 500;
}

@media only screen and (max-width: 1550px) {
  .title .title__content {
    padding: 2.5rem 10%;
  }
  .title .title__content .reviews__bar a img {
    width: 12rem;
  }
  .title .services {
    left: 10%;
    width: 80%;
  }
  .title .services .item img {
    height: 10rem;
  }
}
@media only screen and (max-width: 1300px) {
  .title .title__content {
    height: 500px;
  }
  .title .title__content .text p {
    font-size: 0.85em;
  }
  .title .title__content .text .btn a {
    font-size: 1.1em;
  }
  .title .services .item h2 {
    font-size: 1.25em;
  }
}
@media only screen and (max-width: 900px) {
  .title .title__content {
    grid-template-columns: 1fr;
    height: 450px;
    gap: 0;
    align-items: start;
    padding: 2.5rem 10%;
  }
  .title .title__content .text p {
    font-size: 0.85em;
  }
  .title .title__content .reviews__bar {
    flex-flow: row;
    gap: 2rem;
  }
  .title .title__content .reviews__bar a img {
    width: 100%;
  }
  .title .services {
    gap: 0.5rem;
    transform: translateY(50%);
  }
  .title .services .item h2 {
    font-size: 1em;
  }
  .title .services .item img {
    height: 7.5rem;
  }
}
@media only screen and (max-width: 700px) {
  .title .title__content {
    height: auto;
    grid-template-columns: 1fr;
    padding-bottom: 2.5rem;
    gap: 2rem;
    background-position: left !important;
  }
  .title .title__content .text .buttons {
    margin-top: 1rem;
  }
  .title .title__content .text p {
    width: 80vw;
  }
  .title .title__content .text .btn a {
    font-size: 1em;
  }
  .title .title__content .text .ebook-link {
    font-size: 13px;
  }
  .title .title__content .reviews__bar {
    gap: 5px;
  }
  .title .services {
    grid-template-columns: 1fr 1fr;
    transform: none;
    bottom: 15px;
  }
}
.benefits {
  padding: 5rem 10%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: column;
}
.benefits .h1 {
  color: #000;
  text-align: center;
}
.benefits .subheading {
  justify-content: center;
  margin-bottom: 0.5rem;
}
.benefits .subheading span {
  color: #000;
}
.benefits .heading__desc {
  font-size: 16px;
  text-align: center;
  line-height: 1.5em;
  max-width: 80%;
  margin: 0.5rem 0;
}
.benefits .benefits__content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-top: 1.5rem;
}
.benefits .benefits__content.four {
  grid-template-columns: repeat(4, 1fr);
}
.benefits .benefits__content.two {
  grid-template-columns: 1fr 1fr;
}
.benefits .benefits__content .item {
  padding: 1.5rem;
  background: #F7F7F7;
  border-radius: 25px;
  transition: 0.25s ease;
}
.benefits .benefits__content .item:hover {
  transform: scale(1.025);
  box-shadow: 2px 2px 15px rgba(0, 0, 0, 0.15);
}
.benefits .benefits__content .item .icon {
  height: 51px;
  width: 51px;
}
.benefits .benefits__content .item .item__heading {
  display: grid;
  grid-template-columns: 51px 1fr;
  align-items: center;
  gap: 10px;
  min-height: 100px;
}
.benefits .benefits__content .item h3 {
  font-size: 1.5em;
  font-weight: 500;
  margin-bottom: 0.5rem;
}
.benefits .benefits__content .item p {
  font-size: 0.9em;
  line-height: 1.5em;
  color: rgba(0, 0, 0, 0.8);
  margin: 0.5rem 0;
}
.benefits .benefits__content .item ul {
  padding-left: 20px;
  margin-top: 0.5rem;
}
.benefits .benefits__content .item ul li {
  font-size: 0.85em;
  line-height: 1.5em;
  color: rgba(0, 0, 0, 0.8);
  margin: 0.25rem 0;
}
.benefits .benefits__content .item .btn {
  margin-top: 0.5rem;
}
.benefits .btn {
  margin-top: 3rem;
}
.benefits .btn a {
  font-size: 1.25em;
}

@media only screen and (max-width: 1500px) {
  .benefits .benefits__content .item .item__heading {
    min-height: 110px;
  }
  .benefits .benefits__content .item .item__heading h3 {
    font-size: 1.25em;
  }
}
@media only screen and (max-width: 1300px) {
  .benefits .heading__desc {
    font-size: 14px;
  }
  .benefits .benefits__content.four {
    grid-template-columns: 1fr 1fr;
  }
  .benefits .benefits__content .item .item__heading {
    grid-template-columns: 45px 1fr;
    min-height: 70px;
  }
  .benefits .benefits__content .item .icon {
    height: 45px;
    width: 45px;
  }
  .benefits .benefits__content .item h3 {
    font-size: 1.35em;
  }
  .benefits .benefits__content .item p {
    font-size: 0.75em;
  }
  .benefits .benefits__content .item ul li {
    font-size: 0.75em;
  }
  .benefits .btn {
    margin-top: 2rem;
  }
  .benefits .btn a {
    font-size: 1.1em;
  }
}
@media only screen and (max-width: 900px) {
  .benefits {
    padding: 7.5rem 10% 2.5rem;
  }
  .benefits .benefits__content {
    grid-template-columns: 1fr 1fr;
  }
  .benefits .benefits__content .item .item__heading {
    grid-template-columns: 39px 1fr;
  }
  .benefits .benefits__content .item .item__heading .icon {
    height: 39px;
    width: 39px;
  }
  .benefits .benefits__content .item h3 {
    font-size: 1.25em;
  }
  .benefits .btn a {
    font-size: 1em;
  }
}
@media only screen and (max-width: 900px) {
  .benefits {
    padding: 7.5rem 10% 2.5rem;
  }
  .benefits .benefits__content {
    grid-template-columns: 1fr 1fr;
  }
  .benefits .benefits__content.two {
    grid-template-columns: 1fr;
  }
  .benefits .btn a {
    font-size: 1em;
  }
}
@media only screen and (max-width: 700px) {
  .benefits {
    padding: 2.5rem 10%;
  }
  .benefits .heading__desc {
    font-size: 12px;
    max-width: 100%;
  }
  .benefits .benefits__content {
    grid-template-columns: 1fr;
    margin-top: 1.5rem;
  }
  .benefits .benefits__content.four {
    grid-template-columns: 1fr;
  }
  .benefits .benefits__content .item .item__heading {
    min-height: none;
  }
  .benefits .benefits__content .item .icon {
    height: 45px;
    width: 45px;
  }
  .benefits .benefits__content .item h3 {
    font-size: 1.2em;
  }
  .benefits .benefits__content .item p, .benefits .benefits__content .item ul li {
    font-size: 0.9em;
  }
  .benefits .btn {
    margin-top: 1.5rem;
  }
  .benefits .btn a {
    font-size: 0.9em;
  }
}
.contacts__form__parent {
  padding: 5rem 10%;
}
.contacts__form__parent .contacts__form {
  width: 100%;
  padding: 3rem;
  background: #fff;
  border-radius: 15px;
  border: 2px solid rgba(0, 0, 0, 0.1);
}
.contacts__form__parent .contacts__form h2 {
  font-size: 2.5em;
}
.contacts__form__parent .contacts__form p {
  font-size: 0.8em;
  width: 80%;
}
.contacts__form__parent .contacts__form .input {
  display: flex;
  justify-content: start;
  align-items: start;
  flex-flow: column;
  width: 45%;
}
.contacts__form__parent .contacts__form .input.selects {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.contacts__form__parent .contacts__form .input.selects select {
  padding: 10px;
}
.contacts__form__parent .contacts__form .input.textarea {
  width: 100%;
}
.contacts__form__parent .contacts__form .input #brands-container {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.contacts__form__parent .contacts__form .input label {
  padding-bottom: 0.25rem;
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}
.contacts__form__parent .contacts__form .input label input {
  width: auto;
}
.contacts__form__parent .contacts__form .input label img {
  height: 75px;
  -o-object-fit: fill;
     object-fit: fill;
}
.contacts__form__parent .contacts__form .input label span {
  flex: 0 1 100%;
}
.contacts__form__parent .contacts__form .login .inputs__row {
  margin: 0.5rem 0 1.5rem;
}
.contacts__form__parent .contacts__form .inputs__row {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: start;
  margin: 1.5rem 0;
}
.contacts__form__parent .contacts__form .inputs__row.first {
  margin: 2rem 0 1rem;
}
.contacts__form__parent .contacts__form .inputs__row input, .contacts__form__parent .contacts__form .inputs__row select {
  width: 100%;
  padding: 0.75em 1.25em;
  font-size: 1em;
  border: 2px solid rgba(0, 0, 0, 0.15);
  border-radius: 10px;
  background: #fff;
}
.contacts__form__parent .contacts__form select {
  color: #000 !important; /* Černý text */
  background-color: #fff; /* Bílé pozadí */
}
.contacts__form__parent .contacts__form textarea {
  width: 100%;
  padding: 0.75em 1.25em;
  font-size: 1em;
  height: 5rem;
  border: 2px solid rgba(0, 0, 0, 0.15);
  border-radius: 10px;
  resize: none;
}
.contacts__form__parent .contacts__form .p {
  margin-top: 0.15rem;
  color: rgba(0, 0, 0, 0.6);
}
.contacts__form__parent .contacts__form .p.tel__info {
  font-size: 1.2em;
}
.contacts__form__parent .contacts__form .p a {
  color: #61BB3D;
  font-weight: 700;
  text-decoration: none;
}
.contacts__form__parent .contacts__form .brands__row__parent .brands__row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 1rem;
}
.contacts__form__parent .contacts__form .brands__row__parent .brands__row .category label {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}
.contacts__form__parent .contacts__form .brands__row__parent .brands__row .category label input {
  width: auto;
}
.contacts__form__parent .contacts__form .brands__row__parent .brands__row .category label img {
  height: 75px;
  -o-object-fit: fill;
     object-fit: fill;
}
.contacts__form__parent .contacts__form .brands__row__parent .brands__row .category label span {
  flex: 0 1 100%;
}
.contacts__form__parent .contacts__form #own-content-parent {
  display: none;
}
.contacts__form__parent .contacts__form .gdpr {
  margin: 2rem 0 1rem;
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 0.75rem;
}
.contacts__form__parent .contacts__form .gdpr #gdpr {
  cursor: pointer;
}
.contacts__form__parent .contacts__form .gdpr label {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.contacts__form__parent .contacts__form .gdpr label a {
  color: #61BB3D;
  font-weight: 500;
}
.contacts__form__parent .contacts__form #contact__submit {
  color: #fff;
  border-radius: 10px;
  border: none;
  transition: 0.25s ease;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
}
.contacts__form__parent .contacts__form #contact__submit a {
  font-size: 1.2em;
}
.contacts__form__parent .contacts__form #contact__submit svg {
  height: 1.25em;
  width: 1.25em;
}
.contacts__form__parent .contacts__form #contact__submit:hover {
  transform: scale(1.05);
}

@media only screen and (max-width: 1300px) {
  .contacts__form__parent .contacts__form .input.selects select {
    font-size: 0.9em;
  }
}
@media only screen and (max-width: 900px) {
  .contacts__form__parent .contacts__form .inputs__row input, .contacts__form__parent .contacts__form .inputs__row select {
    font-size: 0.9em;
  }
  .contacts__form__parent .contacts__form .inputs__row .input.selects {
    grid-template-columns: 1fr;
  }
  .contacts__form__parent .contacts__form .inputs__row .input #brands-container {
    grid-template-columns: 1fr;
  }
  .contacts__form__parent .contacts__form textarea {
    font-size: 0.9em;
  }
}
@media only screen and (max-width: 800px) {
  .contacts__form__parent .contacts__form .brands__row__parent .brands__row {
    grid-template-columns: 1fr 1fr;
  }
}
@media only screen and (max-width: 700px) {
  .contacts__form__parent {
    padding: 2.5rem 10%;
  }
  .contacts__form__parent .contacts__form {
    padding: 1.5rem 1rem;
    width: 100%;
    margin: 0 auto;
  }
  .contacts__form__parent .contacts__form h2 {
    font-size: 1.8em;
  }
  .contacts__form__parent .contacts__form p {
    font-size: 0.65em;
    width: 100%;
  }
  .contacts__form__parent .contacts__form .p.tel__info {
    font-size: 1em;
  }
  .contacts__form__parent .contacts__form .input {
    width: 100%;
  }
  .contacts__form__parent .contacts__form .input label {
    font-size: 0.8em;
  }
  .contacts__form__parent .contacts__form .input #brands-container {
    grid-template-columns: 1fr;
  }
  .contacts__form__parent .contacts__form .inputs__row {
    flex-flow: column;
    gap: 0.6rem;
    margin: 2.5rem 0;
  }
  .contacts__form__parent .contacts__form .inputs__row.first {
    margin: 1rem 0 0;
  }
  .contacts__form__parent .contacts__form .inputs__row input, .contacts__form__parent .contacts__form .inputs__row select {
    width: 100%;
    font-size: 0.8em;
  }
  .contacts__form__parent .contacts__form textarea {
    font-size: 0.8em;
  }
  .contacts__form__parent .contacts__form .gdpr label {
    font-size: 0.75em;
  }
  .contacts__form__parent .contacts__form #contact__submit {
    font-size: 0.8em;
    margin-top: 1rem;
  }
  .contacts__form__parent .contacts__form .brands__row__parent .brands__row {
    grid-template-columns: 1fr;
  }
}
.process {
  padding: 5rem 10%;
  overflow: hidden;
}
.process .subheading {
  justify-content: center;
}
.process .subheading span {
  color: #000;
}
.process .h1 {
  text-align: center;
  color: #000;
}
.process .p {
  color: rgba(0, 0, 0, 0.6);
  text-align: center;
  line-height: 1.5em;
  margin: 0.5rem 0;
}
.process .process__content {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.75rem;
}
.process .process__content.second-line .item.active .arrow {
  transform: translate(-50%, 50%) rotate(-90deg);
}
.process .process__content.six {
  grid-template-columns: repeat(3, 1fr);
}
.process .process__content .item {
  display: grid;
  grid-template-columns: 75px 1fr;
  width: 100%;
  background: #F7F7F7;
  position: relative;
  border-radius: 20px;
  cursor: pointer;
  border: 2px solid #1C4132;
}
.process .process__content .item:hover {
  outline: 1px solid #1C4132;
}
.process .process__content .item.active {
  background: #1C4132;
}
.process .process__content .item.active h3 {
  color: #fff;
}
.process .process__content .item.active .arrow {
  transform: translate(-50%, 50%) rotate(90deg);
}
.process .process__content .item .icon {
  height: 80px;
  width: 80px;
}
.process .process__content .item h3 {
  padding: 15px 15px 30px;
  font-size: 20px;
  color: #1C4132;
}
.process .process__content .item .number {
  font-size: 50px;
  line-height: 1em;
  font-weight: 900;
  transition: 0.25s ease;
  background: #1C4132;
  padding: 1rem;
  border-top-left-radius: 18px;
  border-bottom-left-radius: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.process .process__content .item .number span {
  background: rgb(67, 148, 34);
  background: linear-gradient(180deg, rgb(67, 148, 34) 0%, rgb(255, 255, 255) 95%);
  -webkit-background-clip: text; /* Clips the background to the text */
  -webkit-text-fill-color: transparent;
}
.process .process__content .item .arrow {
  height: 41px;
  width: 41px;
  background: rgb(67, 148, 34);
  background: linear-gradient(0deg, rgb(67, 148, 34) 35%, rgb(137, 218, 104) 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 50%);
  transition: 0.25s ease;
}
.process .process__content .item .arrow svg {
  height: 21px;
  width: 21px;
  color: #fff;
  stroke-width: 2.5;
}
.process .process__content .item .btn {
  margin-top: 1rem;
}
.process .process__content .item .btn a {
  font-size: 1.35em;
}
.process .process__content .process__text {
  display: none;
}
.process .process__text {
  margin: 3rem 0;
  padding: 2rem;
  background: #fff;
  border: 2px solid rgb(67, 148, 34);
  border-radius: 20px;
  display: block;
}
.process .process__text h3 {
  font-size: 31px;
  margin-bottom: 1rem;
}
.process .process__text p, .process .process__text ul li {
  font-size: 14px;
  color: rgba(0, 0, 0, 0.8);
  line-height: 1.5em;
}
.process .process__text ul li {
  margin-left: 20px;
}
.process .process__text p {
  margin-bottom: 0.75rem;
}
.process .process__text b {
  margin-top: 0.5rem;
  display: block;
}
.process .process__text b.heading__b {
  margin-top: 1.25rem;
  font-size: 1.25em;
}
.process .process__text .btn {
  margin-top: 1rem;
}
.process .process__text .btn a {
  font-size: 16px;
}

@media (max-width: 1300px) {
  .process .process__content {
    gap: 1rem;
  }
  .process .process__content .item {
    grid-template-columns: 50px 1fr;
  }
  .process .process__content .item h3 {
    font-size: 16px;
    padding: 20px 20px 25px;
  }
  .process .process__content .item .number {
    font-size: 35px;
  }
  .process .process__content .item .arrow {
    height: 35px;
    width: 35px;
  }
  .process .process__content .item .arrow svg {
    height: 17px;
    width: 17px;
  }
  .process .process__text {
    padding: 1.5rem;
  }
  .process .process__text h3 {
    font-size: 25px;
  }
  .process .process__text p, .process .process__text ul li {
    font-size: 12px;
  }
  .process .process__text .btn a {
    font-size: 14px;
  }
}
@media (max-width: 900px) {
  .process .process__content {
    gap: 0.5rem;
  }
  .process .process__content .item .arrow {
    height: 35px;
    width: 35px;
  }
  .process .process__content .item .arrow svg {
    height: 17px;
    width: 17px;
  }
}
@media (max-width: 768px) {
  .process .process__content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .process .process__content.second-line .item.active .arrow {
    transform: translate(-50%, 50%) rotate(90deg);
  }
  .process .process__content.six {
    grid-template-columns: 1fr;
  }
  .process .process__content .item.active + .process__text {
    display: block;
  }
  .process .process__text {
    display: none;
    padding: 1rem;
    background: #fff;
    border: 2px solid rgb(67, 148, 34);
    border-radius: 20px;
    margin: 0 0;
  }
  .process .process__text h3 {
    font-size: 20px;
    margin-bottom: 0.5rem;
  }
  .process .process__text ul li {
    margin-left: 10px;
  }
  .process .process__text p {
    font-size: 14px;
  }
  .process .process__text.visible {
    display: block;
  }
}
.reviews {
  padding: 5rem 10%;
  background: #F9F9F9;
  position: relative;
}
.reviews .subheading {
  justify-content: center;
}
.reviews .subheading span {
  color: #000;
}
.reviews .h1 {
  text-align: center;
  color: #000;
}
.reviews .reviews__content {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  position: relative;
  width: 100%;
}
.reviews .reviews__content .item {
  width: 30%;
}
.reviews .reviews__content .item img {
  width: 100%;
  height: 15rem;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
}
.reviews .reviews__content .item .item__heading {
  display: flex;
  justify-content: start;
  align-items: start;
  flex-flow: column;
  margin: 1rem 0;
}
.reviews .reviews__content .item .item__heading h3 {
  font-size: 2em;
  font-weight: 500;
  text-align: start;
}
.reviews .reviews__content .item .item__heading .rating {
  display: flex;
  justify-items: end;
  align-items: center;
  padding: 10px;
  background: #61B240;
  border-radius: 5px;
}
.reviews .reviews__content .item .item__heading .rating svg {
  height: 30px;
  width: 30px;
  fill: #F9ED00;
  stroke: none;
}
.reviews .reviews__content .item .item__heading .rating span {
  font-size: 1.2em;
  color: #fff;
  margin-left: 0.75rem;
}
.reviews .reviews__content .item .item__heading .item__category {
  display: flex;
  justify-content: start;
  align-items: start;
  background: #1C4132;
  color: #fff;
  padding: 5px 15px;
  margin-top: 0.5rem;
  border-radius: 5px;
}
.reviews .reviews__content .item .parameters {
  display: flex;
  justify-content: start;
  align-items: start;
  flex-flow: column;
  gap: 0.75rem;
}
.reviews .reviews__content .item .parameters .point {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: start;
  flex-flow: column;
}
.reviews .reviews__content .item .parameters .point h4 {
  font-size: 1.3em;
  font-weight: 500;
}
.reviews .reviews__content .item .parameters .point b {
  font-size: 1.15em;
  font-weight: 300;
}
.reviews .reviews__content .item .description {
  margin-top: 3rem;
  font-size: 0.8em;
  line-height: 1.5em;
  color: rgba(0, 0, 0, 0.6);
}
.reviews .reviews__wrapper {
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  width: 100%;
}
.reviews .reviews__wrapper .reviews__content {
  display: flex;
  transition: transform 0.3s ease-in-out;
}
.reviews .reviews__wrapper .item {
  flex: 0 0 33.3333333333%;
  text-align: center;
  padding: 20px;
}
.reviews .reviews__wrapper__wrapper {
  position: relative;
  width: 100%;
}
.reviews .slideshow__buttons {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90vw;
}
.reviews .slideshow__buttons .reviews__prev,
.reviews .slideshow__buttons .reviews__next {
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: none;
  cursor: pointer;
  padding: 0.5rem 1rem;
  z-index: 10;
  font-size: 20px;
  border-radius: 5px;
}
.reviews .slideshow__buttons .reviews__prev:hover,
.reviews .slideshow__buttons .reviews__next:hover {
  background: rgba(0, 0, 0, 0.8);
}
.reviews .refsite {
  display: grid;
  grid-template-columns: 0.7fr 0.3fr;
  align-items: center;
}
.reviews .refsite .refsite__widget {
  height: 30rem;
  width: 100%;
  margin: 5rem auto 0;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.15);
}
.reviews .refsite .badge {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

@media only screen and (max-width: 1300px) {
  .reviews .slideshow__buttons .reviews__prev,
  .reviews .slideshow__buttons .reviews__next {
    font-size: 16px;
    margin-top: 0.5rem;
  }
  .reviews .reviews__content {
    margin-top: 1rem;
  }
  .reviews .reviews__content .item {
    padding: 15px;
  }
  .reviews .reviews__content .item img {
    height: 10rem;
  }
  .reviews .reviews__content .item .item__heading {
    flex-flow: column;
    justify-content: start;
    align-items: start;
  }
  .reviews .reviews__content .item .item__heading h3 {
    font-size: 1.5em;
  }
  .reviews .reviews__content .item .item__heading .rating svg {
    height: 21px;
    width: 21px;
  }
  .reviews .reviews__content .item .item__heading .rating span {
    font-size: 13px;
    margin-left: 5px;
  }
  .reviews .reviews__content .item .parameters .point {
    flex-flow: column;
    align-items: start;
  }
  .reviews .reviews__content .item .parameters .point h4 {
    font-size: 1.1em;
    text-align: start;
  }
  .reviews .reviews__content .item .parameters .point b {
    font-size: 0.9em;
    font-weight: 400;
    text-align: start;
  }
  .reviews .reviews__content .item .description {
    font-size: 0.7em;
    margin-top: 1.75rem;
  }
}
@media only screen and (max-width: 900px) {
  .reviews .reviews__content .item .item__heading h3 {
    font-size: 1.25em;
    margin-bottom: 0.25rem;
  }
  .reviews .reviews__content .item .item__heading .rating svg {
    height: 17px;
    width: 17px;
  }
  .reviews .reviews__content .item .item__heading .rating span {
    font-size: 11px;
    margin-left: 0.25rem;
  }
  .reviews .refsite {
    grid-template-columns: 1fr;
    margin-top: 1rem;
  }
  .reviews .refsite .refsite__widget {
    order: 2;
    margin: 0;
  }
  .reviews .refsite .badge {
    order: 1;
  }
}
@media only screen and (max-width: 700px) {
  .reviews {
    padding: 2.5rem 10%;
  }
  .reviews .slideshow__buttons {
    position: relative;
    transform: none;
    top: inherit;
    left: inherit;
    justify-content: center;
    width: auto;
  }
  .reviews .reviews__content {
    grid-template-columns: 1fr;
  }
  .reviews .reviews__content .item {
    flex: 0 0 50%;
    padding: 7px;
  }
  .reviews .reviews__content .item .item__heading h3 {
    height: 2em;
  }
  .reviews .reviews__content .item .item__heading .item__category {
    font-size: 0.75em;
  }
}
.text__section {
  padding: 5rem 10%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7.5rem;
}
.text__section .image {
  width: 100%;
  display: flex;
  justify-content: end;
  align-items: center;
}
.text__section .image img {
  height: auto;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: left;
     object-position: left;
  border-radius: 20px;
}
.text__section .text {
  display: flex;
  justify-content: center;
  align-items: start;
  flex-flow: column;
}
.text__section .text .subheading span {
  color: #000;
}
.text__section .text .h1 {
  color: #000;
}
.text__section .text p {
  color: rgba(0, 0, 0, 0.8);
  font-size: 1.1em;
  line-height: 1.75em;
  margin: 1.25rem 0 0;
}
.text__section .text ul {
  padding-left: 15px;
}
.text__section .text ul li {
  font-size: 1em;
  color: rgba(0, 0, 0, 0.8);
}
.text__section .text .buttons {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 20px;
}
.text__section .text .btn {
  margin-top: 1.25rem;
}
.text__section .text .btn a {
  font-size: 1.35em;
}
.text__section .text .cta {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 4rem;
  margin-top: 4rem;
}
.text__section .text .cta .btn a {
  font-size: 1.35em;
}
.text__section .text .cta .tel {
  display: grid;
  grid-template-columns: 55px 1fr;
  gap: 1rem;
  align-items: center;
}
.text__section .text .cta .tel .icon {
  height: 55px;
  width: 55px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
  border-radius: 50%;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.15);
}
.text__section .text .cta .tel .icon svg {
  fill: #61B240;
  stroke: none;
  height: 27px;
  width: 27px;
}
.text__section .text .cta .tel .tel__text {
  display: flex;
  justify-content: start;
  align-items: start;
  flex-flow: column;
  gap: 0.5rem;
}
.text__section .text .cta .tel .tel__text span {
  font-size: 0.9em;
  color: rgba(0, 0, 0, 0.6);
}
.text__section .text .cta .tel .tel__text a {
  font-weight: 700;
  color: #000;
  text-decoration: none;
  font-size: 1.5em;
}

@media only screen and (max-width: 1300px) {
  .text__section .text p {
    font-size: 0.9em;
  }
  .text__section .text ul li {
    font-size: 0.9em;
  }
  .text__section .text .btn a {
    font-size: 1.1em;
  }
}
@media only screen and (max-width: 900px) {
  .text__section {
    gap: 2rem;
  }
  .text__section .text p {
    font-size: 0.9em;
  }
}
@media only screen and (max-width: 700px) {
  .text__section {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .text__section .h1 br {
    display: none;
  }
  .text__section .text .btn a {
    font-size: 1em;
  }
  .text__section .image {
    width: 100%;
  }
  .text__section .image img {
    width: 100%;
    height: 100%;
  }
}
.benefits {
  padding: 10rem 10% 5rem;
}

.banner {
  padding: 10rem 10% 2rem;
}
.banner img {
  width: 100%;
}
.banner .btn a {
  font-size: 1.2em;
}

.banner__slideshow {
  padding: 175px 15% 0;
  display: flex;
  justify-content: start;
  align-items: center;
  flex-flow: column;
}
.banner__slideshow .slideshow__content {
  width: 100%;
  height: 39.375vw;
  position: relative;
  margin-top: 1rem;
}

.swiper {
  width: 100%;
  height: 100%;
  max-width: 70vw;
  padding: 0 12.5%;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.swiper-button-next, .swiper-button-prev {
  height: 51px;
  width: 51px;
  background: rgba(0, 0, 0, 0.8);
}
.swiper-button-next::after, .swiper-button-prev::after {
  font-size: 20px;
  color: #fff;
}

.swiper-pagination span {
  background: #fff;
}

.calculator {
  padding: 5rem 10%;
  background: #F7F7F7;
}
.calculator .subheading span {
  color: #000;
}
.calculator .h1 {
  color: #000;
}
.calculator .calculator__content {
  display: flex;
  justify-content: start;
  align-items: center;
  flex-flow: column;
  background: #fff;
  padding: 2rem;
  border-radius: 20px;
  margin-top: 1.5rem;
}
.calculator .calculator__content .navigation {
  width: 70%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
.calculator .calculator__content .navigation::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  height: 5px;
  width: 100%;
  background: rgba(97, 178, 64, 0.2);
  z-index: 1;
}
.calculator .calculator__content .navigation .icon {
  height: 71px;
  width: 71px;
  border-radius: 50%;
  border: 3px solid #61B240;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
  position: relative;
  z-index: 2;
}
.calculator .calculator__content .navigation .icon svg {
  height: 35px;
  width: 35px;
  color: #61B240;
}
.calculator .calculator__content .navigation .icon.active {
  background: rgb(67, 148, 34);
  background: linear-gradient(0deg, rgb(67, 148, 34) 35%, rgb(137, 218, 104) 100%);
}
.calculator .calculator__content .navigation .icon.active svg {
  color: #fff;
}
.calculator .calculator__content .calculations {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: 100%;
  margin-top: 3rem;
}
.calculator .calculator__content .calculations .item {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: column;
  padding: 0 2rem;
  border-right: 2px solid #e3e3e3;
  position: relative;
  /* Track */
  /* Custom Thumb */
}
.calculator .calculator__content .calculations .item:last-of-type {
  border: none;
}
.calculator .calculator__content .calculations .item img {
  height: 30px;
  width: 30px;
  opacity: 0.4;
}
.calculator .calculator__content .calculations .item h4 {
  font-size: 1.25em;
  color: rgba(0, 0, 0, 0.6);
  text-transform: uppercase;
  text-align: center;
}
.calculator .calculator__content .calculations .item input[type=range] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 100%;
  background: transparent;
  margin: 2rem 0;
}
.calculator .calculator__content .calculations .item input[type=range]::-webkit-slider-runnable-track {
  height: 8px;
  background: #e3e3e3;
  border-radius: 4px;
}
.calculator .calculator__content .calculations .item input[type=range]::-moz-range-track {
  height: 10px;
  background: #e3e3e3;
  border-radius: 4px;
}
.calculator .calculator__content .calculations .item input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 90px;
  height: 90px;
  background: url("../../img/icons/range-thumb.png") no-repeat center;
  background-size: contain;
  background-color: transparent; /* Ensure transparency */
  border: none;
  box-shadow: none !important; /* Remove shadow */
  outline: none !important; /* Remove outline */
  cursor: pointer;
  position: relative;
  top: -150%;
}
.calculator .calculator__content .calculations .item input[type=range]::-moz-range-thumb {
  width: 71px;
  height: 71px;
  background: url("../../img/icons/range-thumb.png") no-repeat center;
  background-size: contain;
  background-color: transparent; /* Ensure transparency */
  border: none;
  box-shadow: none !important; /* Remove shadow */
  outline: none !important; /* Remove outline */
  cursor: pointer;
  position: relative;
  top: -150%;
}
.calculator .calculator__content .calculations .item .item__value {
  font-size: 3.25em;
  font-weight: 500;
}
.calculator .calculator__content .btn {
  margin-top: 3rem;
}
.calculator .calculator__content .btn a {
  font-size: 1.25em;
  text-transform: uppercase;
  letter-spacing: 3px;
}

.blog {
  padding: 5rem 10%;
  background: #F7F7F7;
}
.blog .blog__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  gap: 6rem;
}
.blog .blog__content .text {
  transition: 0.25s ease;
}
.blog .blog__content .text .subheading span {
  color: #000;
}
.blog .blog__content .text .h1 {
  color: #000;
}
.blog .blog__content .text p {
  color: rgba(0, 0, 0, 0.6);
  font-size: 1.1em;
  line-height: 1.75em;
  margin: 2rem 0;
}
.blog .blog__content .text .cta {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 4rem;
  margin-top: 4rem;
}
.blog .blog__content .text .cta .btn a {
  font-size: 1.35em;
}
.blog .blog__content .text .cta .tel {
  display: grid;
  grid-template-columns: 55px 1fr;
  gap: 1rem;
  align-items: center;
}
.blog .blog__content .text .cta .tel .icon {
  height: 55px;
  width: 55px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
  border-radius: 50%;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.15);
}
.blog .blog__content .text .cta .tel .icon svg {
  fill: #61B240;
  stroke: none;
  height: 27px;
  width: 27px;
}
.blog .blog__content .text .cta .tel .tel__text {
  display: flex;
  justify-content: start;
  align-items: start;
  flex-flow: column;
  gap: 0.5rem;
}
.blog .blog__content .text .cta .tel .tel__text span {
  font-size: 0.9em;
  color: rgba(0, 0, 0, 0.6);
}
.blog .blog__content .text .cta .tel .tel__text a {
  font-weight: 700;
  color: #000;
  text-decoration: none;
  font-size: 1.5em;
}
.blog .blog__content .image {
  display: flex;
  justify-content: start;
  align-items: end;
  flex-flow: column;
  position: relative;
  padding-bottom: 90px;
}
.blog .blog__content .image img {
  width: 90%;
  height: 35rem;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: left;
     object-position: left;
  border-radius: 15px;
}
.blog .blog__content .image .line {
  background: rgb(67, 148, 34);
  background: linear-gradient(0deg, rgb(67, 148, 34) 35%, rgb(137, 218, 104) 100%);
  width: 5px;
  position: absolute;
  border-radius: 100px;
}
.blog .blog__content .image .line.line1 {
  top: 0;
  right: 0;
  transform: translateX(2.5vw);
  height: 15%;
}
.blog .blog__content .image .line.line2 {
  top: 25%;
  right: 0;
  transform: translateX(2.5vw);
  height: 60%;
}
.blog .blog__content .image .line.line3 {
  top: 0;
  left: 0;
  transform: translateX(1.25vw);
  height: 60%;
}
.blog .blog__content .image .blog__navigation {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 10%;
  padding-right: 10%;
}
.blog .blog__content .image .blog__navigation .buttons {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 0.5rem;
}
.blog .blog__content .image .blog__navigation .buttons button {
  height: 51px;
  width: 51px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background: none;
  border: 1px solid #000;
  transition: 0.25s ease;
  cursor: pointer;
}
.blog .blog__content .image .blog__navigation .buttons button svg {
  height: 25px;
  width: 25px;
  color: #000;
  transition: 0.25s ease;
}
.blog .blog__content .image .blog__navigation .buttons button:hover {
  transform: scale(1.05);
}
.blog .blog__content .image .blog__navigation .progress {
  width: 60%;
  position: relative;
  height: 5px;
  background: #fff;
  border-radius: 100px;
}
.blog .blog__content .image .blog__navigation .progress .state {
  width: 33.3%;
  height: 100%;
  background: rgb(137, 218, 104);
  border-radius: 100px;
}
.blog .blog__content .image .blog__navigation .progress .state.state1 {
  width: 66.6%;
}
.blog .blog__content .image .blog__navigation .progress .state.state2 {
  width: 100%;
}

@media only screen and (max-width: 1550px) {
  .title .title__content .reviews__bar a img {
    width: 12rem;
  }
  .title .services {
    left: 10%;
    width: 80%;
  }
  .title .services .item img {
    height: 8rem;
  }
  .blog .blog__content .text .cta {
    gap: 3rem;
  }
  .blog .blog__content .text .cta .btn a {
    font-size: 1.2em;
  }
  .blog .blog__content .text .cta .tel .icon {
    height: 49px;
    width: 49px;
  }
  .blog .blog__content .text .cta .tel .icon svg {
    height: 23px;
    width: 23px;
  }
  .blog .blog__content .text .cta .tel .tel__text a {
    font-size: 1.35em;
  }
}
@media only screen and (max-width: 1300px) {
  .title .title__content {
    height: 500px;
  }
  .title .title__content .text .btn a {
    font-size: 1.1em;
  }
  .title .services .item h2 {
    font-size: 1.25em;
  }
  .banner__slideshow .slideshow__content #slideshow-btn-left, .banner__slideshow .slideshow__content #slideshow-btn-right {
    font-size: 25px;
    padding: 0.25rem 1rem;
  }
  .benefits .benefits__content .item .icon {
    height: 50px;
    width: 50px;
  }
  .benefits .benefits__content .item h3 {
    font-size: 1.5em;
  }
  .benefits .btn {
    margin-top: 2rem;
  }
  .benefits .btn a {
    font-size: 1.1em;
  }
  .calculator .calculator__content .navigation {
    width: 90%;
  }
  .calculator .calculator__content .navigation .icon {
    height: 61px;
    width: 61px;
  }
  .calculator .calculator__content .navigation .icon svg {
    height: 29px;
    width: 29px;
  }
  .calculator .calculator__content .calculations .item {
    /* Custom Thumb (Image) */
  }
  .calculator .calculator__content .calculations .item img {
    height: 27px;
    width: 27px;
  }
  .calculator .calculator__content .calculations .item h4 {
    font-size: 1em;
  }
  .calculator .calculator__content .calculations .item input[type=range]::-webkit-slider-runnable-track {
    height: 6px;
  }
  .calculator .calculator__content .calculations .item input[type=range]::-webkit-slider-thumb {
    width: 60px;
    height: 60px;
    transform: translateY(-27%);
  }
  .calculator .calculator__content .calculations .item .item__value {
    font-size: 2.25em;
  }
  .calculator .calculator__content .btn a {
    font-size: 1em;
  }
  .blog .blog__content {
    gap: 3rem;
  }
  .blog .blog__content .text p {
    font-size: 0.75em;
  }
  .blog .blog__content .text .cta {
    flex-flow: column;
    align-items: start;
    gap: 1.5rem;
    margin-top: 2rem;
  }
  .blog .blog__content .text .cta .btn a {
    font-size: 1em;
  }
  .blog .blog__content .text .cta .tel .icon {
    height: 41px;
    width: 41px;
  }
  .blog .blog__content .text .cta .tel .icon svg {
    height: 19px;
    width: 19px;
  }
  .blog .blog__content .text .cta .tel .tel__text {
    gap: 0.25rem;
  }
  .blog .blog__content .text .cta .tel .tel__text span {
    font-size: 0.7em;
  }
  .blog .blog__content .text .cta .tel .tel__text a {
    font-size: 1.2em;
  }
  .blog .blog__content .image {
    padding-bottom: 60px;
  }
  .blog .blog__content .image img {
    height: 25rem;
  }
  .blog .blog__content .image .blog__navigation .buttons button {
    height: 43px;
    width: 43px;
  }
  .blog .blog__content .image .blog__navigation .buttons button svg {
    height: 21px;
    width: 21px;
  }
}
@media only screen and (max-width: 900px) {
  .title .title__content {
    grid-template-columns: 1fr;
    height: 450px;
    gap: 0;
    align-items: start;
    padding: 2.5rem 10%;
  }
  .title .title__content .reviews__bar {
    flex-flow: row;
    gap: 2rem;
  }
  .title .title__content .reviews__bar a img {
    width: 100%;
  }
  .title .services {
    gap: 0.5rem;
    transform: translateY(50%);
  }
  .title .services .item h2 {
    font-size: 1em;
  }
  .title .services .item img {
    height: 7.5rem;
  }
  .banner {
    padding: 7.5rem 5% 2rem;
  }
  .banner .btn a {
    font-size: 1em;
  }
  .contacts__form__parent .contacts__form .inputs__row input {
    font-size: 0.9em;
  }
  .contacts__form__parent .contacts__form textarea {
    font-size: 0.9em;
  }
  .calculator .calculator__content .navigation .icon {
    height: 51px;
    width: 51px;
  }
  .calculator .calculator__content .navigation .icon svg {
    height: 25px;
    width: 25px;
  }
  .calculator .calculator__content .calculations {
    grid-template-columns: 1fr;
  }
  .calculator .calculator__content .calculations .item {
    padding: 2rem 0;
    border: none;
    border-bottom: 2px solid #e3e3e3;
  }
  .calculator .calculator__content .calculations .item:first-of-type {
    padding: 0 0 2rem;
  }
  .calculator .calculator__content .calculations .item input[type=range] {
    width: 80%;
  }
  .calculator .calculator__content .btn {
    margin-top: 1rem;
  }
  .calculator .calculator__content .btn a {
    font-size: 0.9em;
  }
  .blog .blog__content {
    gap: 1.5rem;
  }
  .blog .blog__content .text p {
    margin: 1rem 0;
  }
  .blog .blog__content .image img {
    height: 20rem;
  }
  .blog .blog__content .image .line {
    width: 3px;
  }
  .blog .blog__content .image .line.line2 {
    height: 40%;
  }
  .blog .blog__content .image .blog__navigation {
    flex-flow: column;
    align-items: start;
    gap: 1rem;
  }
  .blog .blog__content .image .blog__navigation .buttons {
    order: 2;
  }
  .blog .blog__content .image .blog__navigation .buttons button {
    height: 41px;
    width: 41px;
  }
  .blog .blog__content .image .blog__navigation .buttons button svg {
    height: 23px;
    width: 23px;
  }
  .blog .blog__content .image .blog__navigation .progress {
    width: 100%;
    order: 1;
  }
}
@media only screen and (max-width: 700px) {
  .title .title__content {
    height: auto;
    grid-template-columns: 1fr;
    padding-bottom: 20rem;
    gap: 2rem;
    background-position: right;
    min-height: auto;
    max-height: none;
  }
  .title .title__content .text p {
    width: 80vw;
  }
  .title .title__content .text .btn {
    margin-top: 1rem;
  }
  .title .title__content .text .btn a {
    font-size: 1em;
  }
  .title .title__content .reviews__bar {
    gap: 5px;
  }
  .title .services {
    grid-template-columns: 1fr 1fr;
    transform: none;
    bottom: 15px;
  }
  .banner__slideshow {
    padding: 50px 5%;
  }
  .banner__slideshow .slideshow__content {
    height: 50.625vw;
  }
  .banner__slideshow .slideshow__content img {
    height: 50.625vw;
  }
  .banner__slideshow .slideshow__content #slideshow-btn-left, .banner__slideshow .slideshow__content #slideshow-btn-right {
    font-size: 20px;
    padding: 0.25rem 0.75rem;
  }
  .banner__slideshow .slideshow__content #slideshow-btn-left {
    left: 50%;
    top: 100%;
    transform: translate(-10vw, 50%);
  }
  .banner__slideshow .slideshow__content #slideshow-btn-right {
    right: 50%;
    top: 100%;
    transform: translate(10vw, 50%);
  }
  .swiper {
    max-width: 100vw;
    padding: 0;
  }
  .swiper-button-next, .swiper-button-prev {
    height: 31px;
    width: 31px;
  }
  .swiper-button-next::after, .swiper-button-prev::after {
    font-size: 14px;
  }
  .banner {
    padding: 3.5rem 10%;
  }
  .text__section {
    padding: 3.5rem 10%;
  }
  .benefits {
    padding: 2.5rem 10%;
  }
  .benefits .benefits__content {
    grid-template-columns: 1fr;
    margin-top: 1.5rem;
  }
  .benefits .benefits__content .item .icon {
    height: 45px;
    width: 45px;
  }
  .benefits .benefits__content .item h3 {
    font-size: 1.2em;
  }
  .benefits .btn {
    margin-top: 1.5rem;
  }
  .benefits .btn a {
    font-size: 0.9em;
  }
  .contacts__form__parent {
    padding: 2.5rem 10%;
  }
  .contacts__form__parent .contacts__form {
    padding: 1.5rem 1rem;
    width: 100%;
    margin: 0 auto;
  }
  .contacts__form__parent .contacts__form h2 {
    font-size: 1.8em;
  }
  .contacts__form__parent .contacts__form p {
    font-size: 0.65em;
    width: 100%;
  }
  .contacts__form__parent .contacts__form .inputs__row {
    flex-flow: column;
    gap: 0.6rem;
    margin: 0.6rem 0;
  }
  .contacts__form__parent .contacts__form .inputs__row.first {
    margin: 1rem 0 0;
  }
  .contacts__form__parent .contacts__form .inputs__row input {
    width: 100%;
    font-size: 0.8em;
  }
  .contacts__form__parent .contacts__form textarea {
    font-size: 0.8em;
  }
  .contacts__form__parent .contacts__form .gdpr label {
    font-size: 0.75em;
  }
  .contacts__form__parent .contacts__form #contact__submit {
    font-size: 0.8em;
    margin-top: 1rem;
  }
  .calculator {
    padding: 2.5rem 10%;
  }
  .calculator .calculator__content .navigation {
    width: 100%;
  }
  .calculator .calculator__content .navigation .icon {
    height: 41px;
    width: 41px;
    border: 2px solid #61B240;
  }
  .calculator .calculator__content .navigation .icon svg {
    height: 21px;
    width: 21px;
  }
  .calculator .calculator__content .calculations .item img {
    height: 21px;
    width: 21px;
  }
  .calculator .calculator__content .calculations .item h4 {
    font-size: 0.8em;
  }
  .calculator .calculator__content .calculations .item input[type=range]::-webkit-slider-thumb, .calculator .calculator__content .calculations .item input[type=range]::-moz-range-thumb {
    top: 0;
  }
  .calculator .calculator__content .calculations .item .item__value {
    font-size: 2em;
  }
  .calculator .calculator__content .btn a {
    font-size: 0.85em;
  }
  .blog {
    padding: 2.5rem 10%;
  }
  .blog .blog__content {
    grid-template-columns: 1fr;
  }
  .blog .blog__content .text p {
    font-size: 0.7em;
  }
  .blog .blog__content .text .cta .btn a {
    font-size: 0.9em;
  }
  .blog .blog__content .text .cta .tel {
    gap: 0.5rem;
  }
  .blog .blog__content .image {
    padding-bottom: 90px;
  }
  .blog .blog__content .image img {
    width: 100%;
  }
  .blog .blog__content .image .line {
    display: none;
  }
  .blog .blog__content .image .blog__navigation {
    left: 0;
    padding-right: 0;
  }
  .blog .blog__content .image .blog__navigation .process {
    width: 80vw;
  }
}/*# sourceMappingURL=style.css.map */