.banner-se p{
  color: #FFF;
}
.banner-se h1{
  margin-bottom: 30px;
}
.banner-se .btn-default{
  margin-top: 30px;
}

.offers-se{
  padding-top: 80px;
  padding-bottom: 80px;
}
.offers-se h2{
  margin-bottom: 40px;
}
.offers-se .offer-box .title{
  margin-top: 15px;
  margin-bottom: 15px;
}
.offer-box {
    padding-right: 37px;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.offer-box .link {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
    padding-top: 15px;
}
.offer-box .link a{
  color: #093146;
  text-transform: uppercase;
  font-size: 15px;
  font-weight: 600;
  font-family: 'DMSans18pt'
}

.main-se-3 img{
  max-width: 100%;
}
.brand-slider .slick-track {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap:60px;
}

.brand-slider .slick-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  height: auto;
}
.main-se-3{
  padding-top: 60px;
  padding-bottom: 60px;
}
.main-se-3 h2{
  margin-bottom: 40px;
}
.se-1 .row{
  align-items: center;
}
.se-1 h2{
  margin-bottom: 30px;
}
.se-1 p{
  margin-top: 15px;
  margin-bottom: 15px;
}
.se-1{
  padding-bottom: 60px;
  margin-top: -80px;
}
.se-1 img{
  position: relative;
  max-width: 100%;
}
.se-1 .btn-default{
  margin-top: 30px;
}

.main-se-6{
  padding-top: 80px;
  padding-bottom: 150px;
  color: #FFF;
  background-repeat: no-repeat;
  background-size: cover;
}
.main-se-6 .value-col{
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: center;
    flex-wrap: wrap;
}
.main-se-6 .value-col p{
  color: #fff;
}
.value-box .value {
  font-size: 64px;
  font-weight: 500;
}
.value-box .text p{
  font-weight: 600;
}
.value-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.main-se-6 .row{
  align-items: center;
}
.why-us-box {
    background: #E6F3F7;
    border-radius: 5px;
    padding: 30px;
    height: 100%;
    display: grid;
}
.why-us-box .title {
    margin-bottom: 20px;
    grid-row: 1;
}
.why-us-box .text {
    grid-row: 2;
}

.main-se-7{
  margin-top: -80px;
  overflow: hidden;
}
.why-us-col {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto auto;
    gap: 24px 24px;
    align-items: start;
}
.review-se .btn-content{
    text-align: center;
    margin-top: 40px;
}
.review-se{
  padding-top: 40px;
  padding-bottom: 80px;
}

.main-se-5{
  padding-top: 60px;
  background: #FAFAFA;
  padding-bottom: 30px;
  position: relative;
}
.znak {
    right: 0;
    position: absolute;
    bottom: 54px;
    z-index: 1;
}
.main-se-5 .container{
  position: relative;
  z-index: 2;
}
.main-se-5 .row{
  justify-content: center;
}
.main-se-5 h2{
  margin-bottom: 40px;
}
.main-se-5 .industry-box .title{
  margin-bottom: 10px;
}
.industry-col{
  margin-bottom: 50px;
  padding-left: 50px;
}
.main-se-5 .industry-box {
    border-left: 2px solid #0085AA;
    padding-left: 20px;
    padding-top: 20px;
    padding-bottom: 20px;
}
.se-2{
  background: #FAFAFA;
  padding-top: 60px;
  padding-bottom: 60px;
}
.se-2-box .counter{
  color: #0085AA;
  font-size: 64px;
  font-weight: 600;
}
.se-2-box{
  margin-top: 30px;
}
.se-2-box .title{
  margin-top: 15px;
  margin-bottom: 20px;
}
.se-2 .btn-content{
  margin-top: 40px;
  text-align: center;
}
.faq-se .row{
  justify-content: center;
}
.faq-col {
    background: #FAFAFA;
    padding: 35px 35px 20px 50px;
}
.faq-item{
  border-bottom: 1px solid #F1F2F9;
  margin-top: 20px;
  margin-bottom: 20px;
  padding-bottom: 20px;
}
.faq-item:last-child {
    border-bottom: none;
}
.faq-answer{
  margin-top: 20px;
}
.faq-se .title-col{
  text-align: center;
  margin-bottom: 40px;
}
.faq-se{
  padding-top: 80px;
  padding-bottom: 80px;
}
.faq-question {
    display: flex;
    position: relative;
    align-items: center;
    gap: 12px;
    width: 100%;
    cursor: pointer;
    font-weight: 500;
    transition: background 0.2s;
    list-style: none; /* usuwa strzałkę w niektórych przeglądarkach */
    color: #212121;
    font-size: 24px;
    padding-right: 30px;
}
.faq-question:hover,
details[open] .faq-question {
    color: #0085AA;
}
details[open] .faq-answer {
    animation: fadeIn 0.3s ease-in;
}
.faq-question::after {
    content: '+';
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.6rem;
    font-weight: 400;
    color: #212121;
    line-height: 1;
    transition: transform 0.25s ease;
}

details[open] .faq-question::after {
    content: '−';
    color: #0085AA;
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-8px); }
    to   { opacity: 1; transform: translateY(0); }
}
.main-se-6 h2{
  color: #FFF;
}
.se-1 .text-col{
  padding-right: 80px;
}
@media(max-width:768px){
  .se-1 .text-col{
    padding-right: 15px;
  }
  .offers-se {
    padding-top: 40px;
    padding-bottom: 10px;
  }
  .offer-box .text p{
    font-size: 14px;
  }
  .offer-box .link {
      display: flex;
      align-items: center;
      gap: 8px;
      margin-top: 0;
      padding-top: 15px;
  }
  .offer-box {
      padding-right: 0px;
      height: 100%;
      display: flex;
      flex-direction: column;
      margin-bottom: 30px;
  }
  .why-us-col {
      grid-template-columns: repeat(1, 1fr);
  }
  .main-se-3 {
      padding-top: 40px;
      padding-bottom: 40px;
  }
  .brand-slider .slick-next {
      right: 0px;
  }
  .brand-slider .slick-prev {
      left: 0px;
  }
  .brand-slider {
      padding-left: 25px;
      padding-right: 25px;
  }
  .main-se-6{
    padding-top: 60px;
    padding-bottom: 100px;
  }
  .main-se-6 h2{
    text-align: center;
    margin-bottom: 40px;
  }
  .main-se-6 .value-col {
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      flex-wrap: wrap;
      gap: 40px;
  }
  .value-box .value{
    font-size: 36px;
  }
  .main-se-7 {
      margin-top: -45px;
  }
  .why-us-box .text p{
    font-size: 14px;
  }
  .why-us-box .title {
      margin-bottom: 10px;
      grid-row: 1;
  }
  .review-se .btn-content {
      text-align: center;
      margin-top: 0px;
  }
  .review-se {
      padding-top: 40px;
      padding-bottom: 40px;
  }
  .se-1 {
    padding-bottom: 40px;
    margin-top: 40px;
}
.page-template-offer-sub-page .banner-se {
    height: 600px !important;
}
.se-1 .photo-col{
  margin-top: 20px;
}
.se-2 {
    background: #FAFAFA;
    padding-top: 40px;
    padding-bottom: 40px;
}
.se-2-box .counter {
    font-size: 30px;
}
.main-se-5 {
    padding-top: 40px;
    padding-bottom: 20px;
}
.znak{
  display: none;
}
.faq-se {
    padding-top: 40px;
    padding-bottom: 40px;
}
.faq-col {
    background: #FAFAFA;
    padding: 25px 20px 10px 25px;
}
.faq-question::after{
  right: 5px;
}
.industry-col{
  padding-left: 15px;
}
}
.banner-se .btn-default .arrow {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    transition: all .2s ease-out;
    pointer-events: none;
    transform: rotate(90deg) translateY(-4%) translateX(-9px);
}
.page-template-offer-sub-page .banner-se{
  height: 612px;
}
