/* Row */
.p-80 {
    padding-top: 80px;
    padding-bottom: 80px;
}
.bg-hero {
    background-image: url('lp1/bg-hero.webp');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}

/* Columns */
[class^="col-"] {
  padding-left: 15px;
  padding-right: 15px;
  box-sizing: border-box;
}

/* 12-column system */
.col-1  { width: 8.3333%; }
.col-2  { width: 16.6667%; }
.col-3  { width: 25%; }
.col-4  { width: 33.3333%; }
.col-5  { width: 41.6667%; }
.col-6  { width: 50%; }
.col-7  { width: 58.3333%; }
.col-8  { width: 66.6667%; }
.col-9  { width: 75%; }
.col-10 { width: 83.3333%; }
.col-11 { width: 91.6667%; }
.col-12 { width: 100%; }

/* Responsive (optional) */
@media (max-width: 768px) {
  [class^="col-"] {
    width: 100%;
  }
}

.h1 {
    font-family: 'EB Garamond', Georgia, "Times New Roman", serif;
    font-size: 48px;
    line-height: 1.3em;
}

.lead {
    color: #835D3C;
    font-size: 20px;
}

.black {
  color: #100903;
}

.p {
  font-size: 16px;
}

.text-bold {
    font-weight: bold;
}

.button {
  box-shadow: 0px 10px 30px 0px rgba(255, 77, 84, 0.24);
  transition: letter-spacing 300ms ease 0ms;
  font-weight: bold;
  padding: 1rem 2rem;
  height: auto;
  display: inline-block;
}
.button:hover {
  padding: 1rem 2rem;
}

.h2 {
    font-family: 'EB Garamond', Georgia, "Times New Roman", serif;
    font-size: 40px;
    line-height: 1.3em;
}

.cyan {
  color: #3CB3B3;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 0;
  padding-bottom: 1rem;
}
.check-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 10px;
  font-size: 16px;
}
.check-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8.5px;
  width: 20px;
  height: 20px;
  background-image: url('lp1/check.png');
  background-size: contain;
  background-repeat: no-repeat;
}

.content-end {
  align-content: flex-end;
}

.bg-dark {
   background-color: #0F0302; 
}

.box {
  padding: 1.5rem 2rem;
  border-radius: 3rem;
  height: 100%;
}

.box-req {
  position: relative;
}

.line:after {
  content: '';
  display: block;
  border: 1px dashed #838FA8;
  width: 100%;
  top: 24px;
  position: relative;
}
.dots:after {
  content: '';
  display: block;
  margin: auto;
  border-radius: 50%;
  border: 5px solid #838FA8;
  width: 10px;
  height: 10px;
  top: 15px;
  position: relative;
  background-color: #fff;
}

.dots:hover .box-req {
  background: #fff;
  box-shadow: 0 10px 15px 0px rgba(0, 0, 0, 0.2);
  border-top: 1px solid #3CB3B3;
}

.dots:hover .box-req:after {
  content: "";
  display: block;
  margin: auto;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid #fff;
  position: absolute;
  bottom: -9px;
  left: 50%;
  transform: translateX(-50%);
}

.dots:hover.dots:after {
  border-color: #3CB3B3;
}

.podredani{
  justify-content: center;
}

.box .row {
  justify-content: space-around;
  align-items: center;
}

.white {
  color: #fff;
}

.h3 {
  font-family: 'EB Garamond', Georgia, "Times New Roman", serif;
  font-size: 24px;
  line-height: 1.3em;
}

.lh-1 {
  line-height: 1;
}

.bg-sections {
  background-image: url('lp1/bg-sections.webp');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.pb-0 {
  padding-bottom: 0;
}

.text-end {
  text-align: end;
}

.bg-white {
  background-color: #fff;
}

.img-logo {
 max-height: 98px;
}

.bg-orange {
  background-color: #EF795D;
}

.p-0 {
  padding: 0;
}

.pt-15 {
  padding-top: 1.5rem;
}

.bg-cyan {
  background-color: #3CB3B3;
}

.text-center {
  text-align: center;
}

.border-cyan {
  border: solid #3CB3B3 .5rem;
}

.border-orange {
  border: solid #EF795D .5rem;
}

.my-2 {
  margin-top: 40px;
  margin-bottom: 40px;
}

.bg-gray {
  background-color: #F3F3F3;
}

.bg-faq {
  background: url('lp1/bg-faq.png');
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: cover;
  height: auto;
}

.faq-item {
  border-bottom: 1px solid #ddd;
}
.faq-question {
  width: 100%;
  padding: 15px;
  text-align: left;
  background: none;
  border: none;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #333;
}
.faq-question .icon {
  font-size: 20px;
  color: #e0522d;
  display: inline-block;
  width: 20px;
}
.faq-answer {
  padding: 0 15px 15px 40px;
  display: none;
  color: #666;
  font-size: 14px;
  line-height: 1.5;
}
.faq-item.active .faq-answer {
  display: block;
}
.faq-item.active .faq-question .icon {
  content: "−";
}

.orange {
  color: #EF795D;
}

.shadow {
  box-shadow: 0 10px 15px -10px rgba(0, 0, 0, 0.2);
}

.button-outline {
  background: transparent;
  border: 2px solid #fff;
}

.mt-2 {
  margin-top: 40px;
}

.position-relative {
  position: relative;
}

.swiper {
  width: 100%;
  height: 100%;
}

.swiper-button-next,
.swiper-button-prev {
    box-shadow: 0 10px 10px 2px rgba(0, 0, 0, 0.2);
    padding: 1rem;
    width: auto;
    height: auto;
    border-radius: 20px;
}
.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 20px;
    font-weight: bold;
    color: #000;
}
.swiper-button-prev, .swiper-rtl .swiper-button-next {
    left: auto;
    right: 70px;
}

div.panel, p.flip {
    margin: 0px;
    padding: 5px;
    text-align: center;
    background-color: #F3F3F3;
    color: #3cb3b3;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 0 20px 0 20px;
}

div.panel {
    width: 100%;
    height: auto;
    display: none;
    color: #000;
    box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
    transition: all 0.3s cubic-bezier(.25,.8,.25,1);
}
.kopce{
  font-size:1.5rem;
}

div.panel:hover {
  box-shadow: 0 14px 28px rgba(0,0,0,0.25), 0 10px 10px rgba(0,0,0,0.22);
}

@media (max-width: 768px) {
  .h1 {
    font-size: 40px;
  }
  .h2 {
    font-size: 32px;
  }
  .h3 {
    font-size: 22px;
  }
  .mbm2 {
    margin-bottom: 20px;
  }
  .mbm4 {
    margin-bottom: 40px;
  }
  .d-none, 
  .dots::after,
  .line:after,
  .box-req:after {
    display: none;
  }
  .text-center-m {
    text-align: center;
  }
}