header{
    display: flex;
    background-color: rgb(26 45 73);
    justify-content: end;
    min-height: 50px;
    align-items: center;
  }
  header a{
    color: #dedede;
    margin-right: 30px;
    font-size: 20px;
  }
      .fadein {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1.2s ease-out forwards;
  }

  @keyframes fadeInUp {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  .parallax{
    height: 600px;
  }
  .parallax,.conditions-wrap{
    background-image: url('img/bg3.jpg');
    background-attachment: fixed;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
  }
  .conditions-wrap{
    background-image: url('img/bg4.jpg');
  }
  h3{
    text-align: center;
    min-height: 64px;
  }
  .features>div>div{
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 40px 20px;
  }
  .features img{
    width: 150px;
    display: block;
    margin: 0 auto 20px;
  }
  .features ul, .conditions ul{
    list-style: none;
  }
  li{
    position: relative;
    margin-left: 15px;
  }
  .features li{
    font-size: 17px;
    margin-bottom: 10px;
  }
  .features li:before{
    background-image: url('img/tick-mark.png');
    position: absolute;
    width: 23px;
    height: 23px;
    left: -27px;
    top: 2px;
    content: "";
    display: inline-block;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;

  }
  .features li:first-letter {
    text-transform: uppercase;
  }
  .capture{
    height: auto;
    margin: 30px auto;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #39a2e2;
  }
  .capture img{
    width: 100%;
    margin: auto;
  }
  .faq li:before{
    background-image: url('img/shape.png');
    position: absolute;
    width: 13px;
    height: 13px;
    left: -20px;
    top: 6px;
    content: "";
    display: inline-block;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
  }
  .faq .w-full{
    position: relative;
  }
  .faq .w-full{
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .faq .w-full span{
    font-size: 20px;
    margin-left: 10px;
    margin-right: -13px;
  }
  .faq .text{
    transition: .5s;
  }
  .faq ul{
    margin: 10px;
  }

  .accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: 0.5s ease;
    padding: 0 1.5rem;
  }

  .accordion-content.open {
    max-height: 1500px;
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
  .conditions li{
    margin-bottom: 6px;
    font-size: 18px;
  }
  .conditions li{
    border-bottom: 1px solid #dedede;
    padding-bottom: 6px;
  }
  .conditions li:last-child{
    border-bottom: none;
  }
  .conditions-extra{
    margin-top: 10px;
  }
  .conditions-extra li{
    margin-bottom: 6px;
    font-size: 16px;
    border-bottom: none;
  }
  .conditions li:before{
    background-image: url('img/arrow.png');
    position: absolute;
    width: 30px;
    height: 30px;
    left: -30px;
    top: -1px;
    content: "";
    display: inline-block;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
  }
  .conditions-extra li:before{
    background-image: url('img/check.png');
    width: 15px;
    height: 15px;
    left: -20px;
    top: 6px;
  }
  .faq-else{
    font-size: 20px;
    font-weight: 600;
    margin-top: 40px;
    text-align: center;
  }
  .faq-else a, .call h2 a{
    color: rgb(77, 77, 252);
  }
  .call h2{
    max-width: 830px;
    margin: 0 auto 20px;
  }
  .logo{
    width: 500px;
    margin-right: 10px;
    margin-left: -70px;
  }
  .fadein{
    text-align: left;
  }

  @media (max-width: 1040px) {
    .call h2{
      max-width: 410px;
      font-size: 27px;
    }
    .parallax {
        height: 470px;
    }
    .logo {
        width: 400px;
    }
  }
  @media (max-width: 768px) {
    .parallax {
      background-attachment: scroll;
      height: 440px;
      flex-direction: column;
    }
    .logo {
      width: 300px;
      margin-top: -70px;
      margin-bottom: -35px;
    }
    .fadein{
      text-align: center;
    }
  }
  @media (max-width: 640px) {
    .parallax {
      background-attachment: scroll;
      height: 400px;
    }
    header a{
      margin-right: 15px;
      font-size: 16px;
    }
    .conditions, .call{
      padding-top: 0!important;
    }
  }
  @media (max-width: 460px) {
    .call h2{
      max-width: 260px;
    font-size: 23px;
    line-height: 31px;
    }
  }
  @media (max-width: 350px) {
    header{
      flex-direction: column;
    }
    header a{
      margin: 10px 0 0;
    }
    header a:last-child{
      margin-bottom: 10px;
    }
  }