@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%);
  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::after {
  opacity: 0.2;
}
.title .services .item:hover {
  border: 2px solid rgb(101.0884297521, 185.5024793388, 66.6975206612);
}
.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;
  }
}
.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%;
  object-fit: cover;
  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%;
  }
}
.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;
  }
}
.gallery {
  width: 100%;
  padding: 5rem 0 0;
  position: relative;
  overflow: hidden;
}
.gallery .gallery__heading {
  padding: 0 10% 3rem;
}
.gallery .subheading span, .gallery .h1 {
  color: #000;
}
.gallery .images {
  display: flex;
  justify-content: start;
  align-items: start;
  width: 100vw;
}
.gallery .images img {
  width: 25%;
}

@media only screen and (max-width: 700px) {
  .gallery .images {
    flex-flow: row wrap;
  }
  .gallery .images img {
    width: 50%;
  }
}
.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;
  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;
  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;
  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;
  }
}
.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;
  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;
  }
}
.video {
  margin: 5rem 15%;
  height: 39.375vw;
  width: 70vw;
}

.section:nth-child(even) {
  background: #F9F9F9;
}
.section:nth-child(even) .item {
  background: #fff;
}

.servis__collabs {
  padding: 5rem 10%;
}
.servis__collabs .h1 {
  color: #000;
  text-align: center;
}
.servis__collabs .collabs__content {
  margin: 5rem 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: column;
}
.servis__collabs .collabs__content h3 {
  font-size: 3em;
}
.servis__collabs .collabs__content .logos {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: row wrap;
}
.servis__collabs .collabs__content .logos .image-container {
  flex-grow: 0;
  flex-shrink: 0;
  flex-basis: 15%;
  max-width: 15%;
}
.servis__collabs .collabs__content .logos .image-container img {
  width: 100%; /* Ensure the image fits horizontally */
  height: 100%; /* Ensure the image fits vertically */
  object-fit: cover; /* Prevent distortion */
}

.certificates {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-flow: row wrap;
  padding: 3rem 20%;
}
.certificates img {
  flex: 0 1 33%;
  flex-grow: 0;
  flex-shrink: 0;
  flex-basis: 33%;
  max-width: 33%;
  width: 100%;
}

.certificates__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  padding: 0 10% 2rem;
}
.certificates__row .item img {
  width: 100%;
}

.important {
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}
.important .important__content {
  background: url("../../img/flagbg.png");
  background-size: 100% 100%;
  padding: 2rem 10%;
  display: flex;
  justify-content: start;
  align-items: start;
  flex-flow: column;
  gap: 1rem;
  width: 80%;
}
.important .important__content .point {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 1.5rem;
}
.important .important__content .point .icon {
  height: 55px;
  width: 55px;
  background: #1C4132;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}
.important .important__content .point .icon img {
  height: 27px;
  width: 27px;
}
.important .important__content .point span {
  font-size: 1.5em;
  font-weight: 600;
  color: #1C4132;
  text-transform: uppercase;
}
.important .line1 {
  width: 120vw;
  height: 250px;
  background: #1C4132;
  position: absolute;
  bottom: 5%;
  left: 50%;
  transform: rotate(-10deg) translateX(-50%);
  z-index: -1;
}
.important .line2 {
  width: 120vw;
  height: 250px;
  background: #61B240;
  position: absolute;
  bottom: 15%;
  left: 50%;
  transform: rotate(-15deg) translateX(-50%);
  z-index: -2;
}

.bundles {
  padding: 5rem 10%;
}
.bundles .h1 {
  text-align: center;
  color: #000;
}
.bundles p {
  margin-top: 1rem;
  font-size: 20px;
  text-align: center;
}
.bundles .bundles__buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 2rem;
}
.bundles .bundles__buttons button {
  border: 3px solid #61B240;
  padding: 15px 35px;
  background: #F9F9F9;
  border-radius: 15px;
  transition: background-color 0.25s ease, color 0.25s ease;
  cursor: pointer;
  display: block;
}
.bundles .bundles__buttons button.active, .bundles .bundles__buttons button:hover {
  background-color: #61B240;
  color: #fff;
}
.bundles .bundles__buttons button.active h5, .bundles .bundles__buttons button:hover h5 {
  color: #fff;
}
.bundles .bundles__buttons button.active span, .bundles .bundles__buttons button:hover span {
  color: #fff;
}
.bundles .bundles__buttons button h5 {
  font-size: 25px;
  color: rgba(97, 178, 64, 0.7);
  margin-bottom: 0.25rem;
  transition: color 0.25s ease;
}
.bundles .bundles__buttons button span {
  font-size: 15px;
  transition: color 0.25s ease;
  color: rgba(97, 178, 64, 0.7);
  font-weight: 500;
}
.bundles .bundles__content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 2rem;
}
.bundles .bundles__content#bundle_2 {
  grid-template-columns: 1fr;
  padding: 0 20%;
  display: none;
}
.bundles .bundles__content .item {
  padding: 0 0 10px;
  border-radius: 25px;
  background: #F9F9F9;
  border: 3px solid #61B240;
  transition: 0.25s ease;
}
.bundles .bundles__content .item:hover {
  transform: scale(1.025);
}
.bundles .bundles__content .item .item__heading {
  background: #61B240;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  padding: 10px 20px;
}
.bundles .bundles__content .item h3 {
  font-size: 26px;
  text-align: center;
  color: #fff;
  padding: 0 20px;
}
.bundles .bundles__content .item h4 {
  font-size: 16px;
  color: #fff;
  text-align: center;
  padding: 0 20px;
  font-weight: 600;
}
.bundles .bundles__content .item .points .point {
  padding: 6px 25px;
  text-align: center;
  font-size: 13px;
  color: #000;
  font-weight: 500;
  position: relative;
}
.bundles .bundles__content .item .points .point.with__desc {
  padding: 10px 45px 10px 30px;
}
.bundles .bundles__content .item .points .point:nth-child(odd) {
  background: #ebebeb;
}
.bundles .bundles__content .item .points .point:nth-child(odd) sup {
  background: #F9F9F9;
}
.bundles .bundles__content .item .points .point sup {
  margin-left: 1rem;
  height: 21px;
  width: 21px;
  border-radius: 50%;
  display: inline-block;
  background: #ebebeb;
  line-height: 21px;
  font-size: 11px;
  cursor: pointer;
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
}
.bundles .bundles__content .item .points .point sup:hover + .point__popup {
  display: grid;
}
.bundles .bundles__content .item .points .point .point__popup {
  padding: 10px;
  background: #1C4132;
  border-radius: 10px;
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 2;
  transform: translate(-50%, -100%);
  width: 90%;
  display: none;
  outline: 1px solid #fff;
}
.bundles .bundles__content .item .points .point .point__popup span {
  font-size: 12px;
  display: grid;
  grid-template-columns: 21px 1fr;
  align-items: start;
  justify-items: start;
  gap: 5px;
  color: #fff;
  text-align: start;
}
.bundles .bundles__content .item .points .point .point__popup sup {
  margin: 0 10px 0 0;
  color: #000;
  text-align: center;
  position: relative;
  transform: none;
  left: 0;
  top: 0;
}
.bundles .bundles__content .item .sale {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 35px 10% 0;
  gap: 15px;
}
.bundles .bundles__content .item .sale img {
  height: 65px;
  width: 65px;
}
.bundles .bundles__content .item .sale h4 {
  font-size: 20px;
  color: #fff;
  padding: 10px 20px;
  background: #61B240;
  border-radius: 5px;
  font-weight: 500;
}
.bundles .bundles__content .item .price {
  padding: 1rem 5% 0.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: column;
  row-gap: 3px;
}
.bundles .bundles__content .item .price h3 {
  color: #000;
  text-align: center;
  font-size: 24px;
}
.bundles .bundles__content .item .price span {
  font-size: 12px;
  word-spacing: -2px;
  text-align: center;
}
.bundles .bundles__content .item .price .btn {
  margin-top: 0.5rem;
}
.bundles .bundles__content .item .price .btn a {
  font-size: 14px;
}

@media only screen and (max-width: 1300px) {
  .important .important__content {
    padding: 1.5rem 10%;
    gap: 0.5rem;
  }
  .important .important__content .point .icon {
    height: 51px;
    width: 51px;
  }
  .important .important__content .point .icon img {
    height: 21px;
    width: 21px;
  }
  .important .important__content .point span {
    font-size: 1.25em;
  }
}
@media only screen and (max-width: 900px) {
  .servis__collabs {
    margin: 0;
    padding: 2.5rem 10%;
  }
  .servis__collabs .collabs__content {
    margin: 2.5rem 0;
  }
  .servis__collabs .collabs__content h3 {
    font-size: 1.5em;
  }
  .servis__collabs .collabs__content .logos .image-container {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: 25%;
    max-width: 25%;
  }
  .important {
    padding: 2.5rem 0;
  }
  .important .important__content {
    padding: 2rem 10%;
    width: 90%;
  }
  .important .important__content .point .icon {
    height: 57px;
    width: 57px;
  }
  .important .important__content .point .icon img {
    height: 31px;
    width: 31px;
  }
  .important .important__content .point span {
    font-size: 1.25em;
  }
}
@media only screen and (max-width: 900px) {
  .important {
    padding: 2.5rem 0;
  }
  .important .important__content {
    padding: 2rem 10%;
    width: 100%;
  }
  .important .important__content .point {
    gap: 15px;
  }
  .important .important__content .point .icon {
    height: 47px;
    width: 47px;
  }
  .important .important__content .point .icon img {
    height: 25px;
    width: 25px;
  }
  .important .important__content .point span {
    font-size: 1em;
  }
}
@media only screen and (max-width: 1550px) {
  .bundles .bundles__content .item h3 {
    font-size: 28px;
  }
  .bundles .bundles__content .item h4 {
    font-size: 18px;
  }
}
@media only screen and (max-width: 1300px) {
  .bundles .bundles__buttons button h5 {
    font-size: 23px;
  }
  .bundles .bundles__buttons button span {
    font-size: 14px;
  }
  .bundles .bundles__content {
    gap: 10px;
  }
  .bundles .bundles__content .item .item__heading {
    padding: 15px 15px;
  }
  .bundles .bundles__content .item h3 {
    font-size: 25px;
    padding: 0 0px;
  }
  .bundles .bundles__content .item h4 {
    font-size: 15px;
  }
  .bundles .bundles__content .item .points .point {
    font-size: 13px;
  }
  .bundles .bundles__content .item .sale img {
    height: 45px;
    width: 45px;
  }
  .bundles .bundles__content .item .sale h4 {
    font-size: 15px;
  }
  .bundles .bundles__content .item .price h3 {
    font-size: 24px;
  }
  .bundles .bundles__content .item .price .btn a {
    font-size: 14px;
  }
}
@media only screen and (max-width: 900px) {
  .certificates img {
    flex: 0 0 50%;
  }
  .certificates__row {
    grid-template-columns: 1fr;
    padding: 0 5% 2rem;
  }
  .bundles p {
    font-size: 16px;
    margin-top: 0.5rem;
  }
  .bundles .bundles__buttons {
    margin-top: 1rem;
  }
  .bundles .bundles__buttons button {
    padding: 10px 15px;
  }
  .bundles .bundles__buttons button h5 {
    font-size: 18px;
  }
  .bundles .bundles__buttons button span {
    font-size: 12px;
  }
  .bundles .bundles__content {
    grid-template-columns: 1fr 1fr;
  }
  .bundles .bundles__content#bundle_2 {
    padding: 0;
  }
  .bundles .bundles__content .item {
    border-radius: 17px;
    border: 2px solid #61B240;
  }
  .bundles .bundles__content .item .item__heading {
    border-top-left-radius: 13px;
    border-top-right-radius: 13px;
  }
  .bundles .bundles__content .item h3 {
    font-size: 20px;
  }
  .bundles .bundles__content .item h4 {
    font-size: 15px;
    padding: 0;
  }
  .bundles .bundles__content .item .points .point {
    font-size: 12px;
    padding: 10px 15px;
  }
}
@media only screen and (max-width: 700px) {
  .video {
    margin: 5rem 10%;
    height: 45vw;
    width: 80vw;
  }
  .bundles {
    padding: 2.5rem 10%;
  }
  .bundles p {
    font-size: 14px;
    margin-top: 0.5rem;
  }
  .bundles .bundles__buttons {
    gap: 10px;
  }
  .bundles .bundles__buttons button {
    padding: 15px 15px;
  }
  .bundles .bundles__buttons button h5 {
    font-size: 18px;
  }
  .bundles .bundles__buttons button span {
    font-size: 11px;
  }
  .bundles .bundles__content {
    grid-template-columns: 1fr;
    row-gap: 35px;
  }
  .bundles .bundles__content .item .price h3 {
    font-size: 22px;
  }
  .bundles .bundles__content .item .price span {
    font-size: 13px;
    word-spacing: 0;
  }
  .bundles .bundles__content .item .price .btn a {
    font-size: 14px;
  }
}
