*,
*::before,
*::after {
  box-sizing: border-box;
}
ul{
    list-style-type: none;
}
html {
  scroll-behavior: smooth;
}
body{
    margin: 0px;
    padding: 0px;
    width: 100%;
}
li{
    text-decoration: none;
}
header{
    background-size: contain;     
    background-repeat: no-repeat;
    width: 100%;
    height: 800px;
}




.desktop-menu {
    height: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    list-style: none;
}
.desktop-menu ul {
  display: flex;
  align-items: center;
}
.desktop-menu img{
    width: 100px;
    height: 100px;
}
.desktop-menu a {
  color: #fff;
  margin-left: 25px;
  margin-right: 25px;
  font-size: clamp(14px, 1.2vw, 18px);
  text-decoration: none;
}
.desktop-menu button {
  background: linear-gradient(to left, #860000, #ff2326);
  color: #fff;
  width: 90px;
  height: 35px;
  border: 0;
  border-radius: 10px;
  font-size: clamp(14px, 1vw, 16px);
  cursor: pointer;
}
.mobile-menu button{
    background: linear-gradient(to left, #860000, #ff2326);
    color:#ffffff;
    width: 125px;
    height: 45px;
    border: 0px;
    border-radius: 0px;
    font-size: 20px;
    margin-top: 10px;
}
.mobile-menu-btn {
    display: none;
    height: 50px;
    color: white;
    cursor: pointer;
    font-size: 25px;
    padding-left: 5%;
    padding-right: 5%;
}
.mobile-menu {
    display: none;
    position: fixed;
    margin: 0;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.9);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    list-style: none;
    z-index: 100;
}
.mobile-menu-mobility{
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: space-between;
}
.mobile-menu a {
    color: white;
    text-decoration: none;
    font-size: 20px;
    margin: 20px 0;
    display: block;
}
.close-btn {
    position: absolute;
    top: 30px;
    right: 30px;
    color: white;
    font-size: 35px;
    cursor: pointer;
}



/* header info */
a{
    text-decoration: none;
}
header.hero{
  position: relative;
  width: 100%;
  height: 700px;
  overflow: hidden;

  background-image: url("images/bckmain.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

header.hero::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(900px 560px at 18% 36%, rgba(0,0,0,.72), transparent 62%),
    linear-gradient(90deg, rgba(0,0,0,.74), rgba(0,0,0,.18) 58%, rgba(0,0,0,.10));
  z-index:1;
}

header.hero::after{
  content:"";
  position:absolute;
  inset:0;
  background: radial-gradient(800px 300px at 85% 0%, rgba(225,29,46,.12), transparent 60%);
  z-index:1;
}

header.hero .header-margin{
  position: relative;
  z-index:2;
  padding: 0 24px;
  height: 100%;
}

header.hero .hero-content{
  padding-top: 130px;
  width: min(720px, 100%);
}

header.hero .header-maintext{
  margin: 0;
}
header.hero .header-maintext h2{
  margin: 0 0 14px;
  font-size: 56px;
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.4px;
  color: #fff;
  text-shadow: 0 12px 32px rgba(0,0,0,.55);
}

header.hero .hero-sub{
  margin: 0 0 22px;
  font-size: 16px;
  color: rgba(255,255,255,.72);
}

header.hero .hero-actions{
  display:flex;
  gap: 14px;
  margin-bottom: 26px;
}

header.hero .btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  height: 46px;
  padding: 0 18px;
  border-radius: 12px;
  font-weight: 800;
  letter-spacing: .1px;
  border: 1px solid transparent;
  box-shadow: 0 10px 30px rgba(0,0,0,.30);
}

header.hero .btn-primary{
  background: linear-gradient(180deg, rgba(225,29,46,.95), rgba(160,10,18,.95));
  border-color: rgba(255,255,255,.08);
  color:#fff;
}
header.hero .btn-primary:hover{ filter: brightness(1.05); }

header.hero .btn-ghost{
  background: rgba(0,0,0,.32);
  border-color: rgba(255,255,255,.12);
  color: rgba(255,255,255,.92);
}
header.hero .btn-ghost:hover{ background: rgba(0,0,0,.38); }

header.hero .hero-timer-label{
  color: rgba(255,255,255,.55);
  font-size: 14px;
  margin-bottom: 10px;
}

header.hero .container{
  display:flex;
  gap: 18px;
  align-items: stretch;
}

header.hero .time-square{
  width: 120px;
  padding: 14px 14px 12px;

  background: rgba(0,0,0,.32);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 14px;

  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;

  backdrop-filter: blur(10px);
}

header.hero .value{
  font-size: 42px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.5px;
  color:#fff;
}

header.hero .label{
  margin-top: 8px;
  font-size: 13px;
  color: rgba(255,255,255,.55);
}

@media (max-width: 900px){
  header.hero{ height: 760px; }
  header.hero .hero-content{ padding-top: 90px; }
  header.hero .header-maintext h2{ font-size: 40px; }

  header.hero .container{ flex-wrap: wrap; gap: 12px; }
  header.hero .time-square{ width: 140px; }
}

@media (max-width: 600px){
  header.hero .header-maintext h2{ font-size: 34px; }
  header.hero .hero-actions{ flex-direction: column; align-items: flex-start; }
  header.hero .btn{ width: min(360px, 100%); }
  header.hero .time-square{ width: calc(50% - 6px); height: auto; }
}


  





/* MAIN-PART-MAIN-PART */
/* MAIN-PART-MAIN-PART */
main{
    background-image: url("images/bgc.png");
    background-size: cover;
    margin-top: 0px;   
    background-repeat: no-repeat;
    width: 100%;
    padding-top: 70px;
    padding-bottom: 50px;
}
.doen{
    display: flex;
    width: 70%;
    margin-left: 15%;
    margin-left: 15%;
}
.doen img{
    width: 500px;
    height: 300px;
    border: 15px solid;
    border-image: linear-gradient(to right, rgb(41, 40, 40), transparent) 1;
}
.doen-text{
    color: white;
    margin-left: 30px;
    display: flex;
    align-items: center;
}
.doen-text h1{
    margin-bottom: 20px;
}
.highlight{
    color: red;
}
/* animate */
.fade-in-element {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.fade-in-element.show{
    opacity: 1;
    transform: translateY(0);
}
/* animate */





.snel-img-text{
    display: flex;
    justify-content: center;
}
.snel-img-text h2{
    color: white;
    display: flex;
    align-items: center;
}
.snel-img-text img{
    width: 60px;
    height: 60px;
}
.snel-begin{
    width: 70%;
    margin-left: 15%;
    margin-right: 15%;
    margin-top: 150px;
    text-align: center;
    justify-content: center;
}
.snel-begin p{
    color: grey;
    margin-top: 30px;
}
.rectangles{
    width: 70%;
    margin-top: 100px;
    margin-left: 15%;
    margin-right: 15%;
    display: flex;
    justify-content:center;
    align-content: space-between;
}
.rectangles h2{
    color: white;
    display: flex;
    justify-content: center;
}
.rectangles p{
    color: grey;
    margin-right: 5px;
    text-align: center;
    height: 50px;
}
.rectangles img{
    width: 100%;
    align-self: center;

}
.rectangles div{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 300px;
}


.lage-prijs{
    color: white;
    display: flex;
    justify-content: center;
    width: 70%;
    text-align: center;
    margin-left: 15%;
    margin-right: 15%;
    margin-top: 200px;
}

.icons{
    display: flex;
    width: 70%;
    margin-top: 100px;
    margin-left: 15%;
    margin-right: 15%;
}

.icons-img{
  display: flex;
  justify-content: center;
}
.icons h2{
    color: white;
    text-align: center;
    margin-top: 30px;
    margin-bottom: 30PX;
    font-size: 20px;
}
.icons p{
    color: grey;
    text-align: center;
    font-size: 14px;
}
.icons div{
    margin-left: 30px;
    margin-right: 30px;
}


.feedback-container {
      display: flex;
      background: rgba(255, 255, 255, 0.1);
      border-radius: 999px;
      padding: 5px;
      max-width: 500px;
      width: 100%;
}

.feedback-container input {
      flex: 1;
      border: none;
      outline: none;
      background: transparent;
      color: white;
      padding: 10px 20px;
      font-size: 14px;
}

.feedback-container input::placeholder {
      color: #ccc;
}

.feedback-container button {
      border: none;
      border-radius: 999px;
      background: linear-gradient(90deg, #f44336, #ff6f61);
      color: white;
      padding: 10px 20px;
      font-weight: bold;
      cursor: pointer;
}

.feedback-container button:hover {
      background: linear-gradient(90deg, #ff6f61, #f44336);
}
.feedback-boss{
    display: flex;
    width: 100%;
    justify-content: center;
    margin-bottom: 30px;
}

footer{
    display: flex;
    margin-left: 15%;
    margin-right: 15%;
    width: 70%;
    margin-top: 200px;
    justify-content: center;
}
.contacten h1{
    color: white;
    text-align: center;
    margin-bottom: 50px;
}
.contacten a{
    color: white;
    margin-left: 5px;
    text-decoration: none;
}
.contacten p{
    margin-bottom: 50px;
    color: rgb(177, 177, 177);
    text-align: center;
}
.footer-inst{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 50px;
}
.footer-inst a{
    margin-right: 5px;
}
.notification{
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
    text-align: center;
}








/* do 400px */
@media (max-width: 400px) {
    header{
        background-size: cover;     
        background-image: url("images/carback1.png");
        background-repeat: no-repeat;
        width: 100%;
        height: 250px;
        /* padding-top: 20px; */
    }
    .header-margin{
        margin-left: 5%;
    }
    .header-maintext{
        font-size: 16px;
        margin-top: 10px;
        width: 90%;
        color: white;
    }
    .container {
        display: flex;
        gap: 20px;
        margin-top: 10px;
    }
    li{
        margin-left: 20px;
        margin-right: 20px;
    }
    .desktop-menu a{
        font-size: 14px;
    }
    .desktop-menu button{
        width: 85px;
        height: 35px;
        font-size: 14px;
    }

    .desktop-menu {
        display: none;
    }

    .doen{
        width: 70%;
        margin-left: 15%;
        margin-left: 15%;
        display: block;
    }
    .fade-in-element span{
        color: white;
    }
    .doen img{
        width: 90%;
        height: auto;
        margin-left: 5%;
        margin-right: 5%;
        border: 10px rgb(54, 54, 54) solid;
    }
    .doen-text{
        margin-left: 0px;
        margin-top: -120px;
        text-align: center;
    }
    .doen-text h1{
        color: #ffffff;
        margin-bottom: 50px;
    }
    .highlightt{
        color: white;
    }
    .icons{
        display: block;
    }
    .mobile-menu-btn{
        display: block;
    }
}

/* телефоны до 600 пикселей*/
@media (min-width: 401px) and (max-width: 600px) {
    header{
        background-size: cover;     
        background-repeat: no-repeat;
        width: 100%;
        background-image: url("images/carback1.png");
        height: 250px;
    }
    .header-margin{
        margin-left: 5%;
        margin-right: 5%;
    }
    .header-maintext{
        font-size: 18px;
        margin-top: 10px;
        width: 90%;
        color: white;
    }
    .container {
        display: flex;
        gap: 20px;
        margin-top: 10px;
    }
    .desktop-menu img{
        width: 40px;
        height: 40px;
    }
    li{
        margin-left: 20px;
        margin-right: 20px;
    }
    .desktop-menu a{
        font-size: 14px;
    }
    .desktop-menu button{
        width: 85px;
        height: 35px;
        font-size: 14px;
    }

    .desktop-menu {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .doen{
        width: 70%;
        margin-left: 15%;
        margin-left: 15%;
        display: block;
    }
    .doen img{
        width: 80%;
        height: auto;
        margin-left: 10%;
        margin-right: 10%;
        border: 10px rgb(54, 54, 54) solid;
    }
    .doen-text{
        margin-left: 0px;
        margin-top: -120px;
        text-align: center;
    }
    .doen-text h1{
        color: #ffffff;
        margin-bottom: 50px;
    }
    .highlightt{
        color: white;
    }

    .icons{
        display: block;
    }
    .icons div{
        margin-top: 40px;
    }
}



/* телефоны до 900 пикселей*/
@media (min-width: 601px) and (max-width: 900px) {
    header{
        background-size: cover;      
        background-repeat: no-repeat;
        background-image: url("images/carback1.png");
        width: 100%;
        height: 500px;
    }
    .header-margin{
        margin-left: 5%;
        margin-right: 5%;
    }
    .header-maintext{
        font-size: 25px;
        margin-top: 50px;
        width: 90%;
        color: white;
    }
    .container {
        display: flex;
        gap: 20px;
        margin-top: 30px;
    }
    .desktop-menu a{
        font-size: 14px;
    }
    .desktop-menu button{
        width: 85px;
        height: 35px;
        font-size: 14px;
    }
    .desktop-menu {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }


    .doen{
        width: 70%;
        margin-left: 15%;
        margin-left: 15%;
        display: block;
    }
    .highlightt{
        color: white;
    }
    .doen img{
        width: 80%;
        height: auto;
        margin-left: 10%;
        margin-right: 10%;
        border: 10px rgb(54, 54, 54) solid;
    }
    .doen-text{
        margin-left: 0px;
        margin-top: -120px;
        text-align: center;
    }
    .doen-text h1{
        color: #ffffff;
        margin-bottom: 50px;
    }

    .icons{
        display: flex;
        width: 50%;
    }
    .icons div{
        width: 30%;
    }
}
  


/* Диапазон (например, планшеты) */
@media (min-width: 901px) and (max-width: 1199px) {
    header{
        background-size: cover;     
        background-repeat: no-repeat;
        width: 100%;
        height: 600px;
        /* padding-top: 20px; */
    }
    .header-margin{
        margin-left: 5%;
    }
    .header-maintext{
        font-size: 34px;
        margin-top: 100px;
        width: 700px;
        color: white;
    }
    .container {
        display: flex;
        gap: 20px;
        margin-top: 50px;
    }
    .desktop-menu {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .doen img{
        height: auto;
        width: 400px;
    }
}



/* Для экранов ≥ 1200px (ПК) */
@media (min-width: 1200px) {
    header{
        height: 900px;
        background-size: cover;
    }
    .header-margin{
        margin-left: 15%;
        margin-right: 15%;
    }
    .desktop-menu a{
        font-size: 16px;
    }
    .desktop-menu h1{
        font-size: 22px;
    }
}




/* Для экранов ≥ 1200px (ПК) */
@media (min-width: 2001px){
    header{
        height: 1300px;
    }
    .icons .fade-in-element{
    width: 100%;
}

}




