/*Laptop screen*/
@media (min-width: 600px) {
  button {
    display: none;
  }

  main .text-container h1 {
    font-size: 4.8rem;
  }

  main .text-container p {
    font-size: 1.5rem;
  }
}

@media (max-width: 600px) , (min-width: 800px) and (max-width: 1200px) {
  .menu-btn {
    display: block;
  }

  .navigate .logo-container {
    width: 90px;
    height: 20px;
    background-position: center;
    background-size: cover;
  }

  body header nav.navigate {
    position: relative;
  }

  header nav ul.links {
    display: none;
  }

  .menu-toggle:checked ~ nav ul.links {
    height: 50vh;
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 0px;
    right: 0px;
    background-color: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(12px);
    z-index: 100;
  }

  .btn {
    width: 120px;
  }

  .btn a {
    border-radius: 30px;
    padding: 3px 1px;
    font-optical-sizing: auto;
  }

  main .img-container .background:first-child img {
    width: 40%;
  }
  main .main-content .text-background {
    width: 300px;
    aspect-ratio: 3/4;
    border-radius: 50px;
  }
  main .main-content .text-container {
    width: 70%;
  }
  .special-features .special-features-content aside {
    width: 100%;
    height: 50%;
    position: absolute;
  }

  .special-features-content {
    flex-direction: column;
  }

  .special-features .special-features-content .L {
    bottom: 0px;
  }

  .special-features .special-features-content .R {
    top: 0px;
  }

  .special-features .features-container .img-container img {
    width: 40px;
    height: 40px;
  }

  .special-features .floating-container {
    transform: translate(0%, 0%);
    width: 100%;
    height: 50%;
  }

  .special-features .floating-container img:first-child {
    right: 0%;
  }

  .product .heading {
    flex-direction: column;
  }

  .product .card-container {
    gap: 1%;
    grid-template-columns: repeat(1, 1fr);
  }

  .about {
    min-height: 100vh;
  }

  .about .about-content {
    flex-direction: column;
  }

  .about .text-container {
    width: 100%;
    flex-direction: column;
    justify-content: space-around;
    line-height: 1.3rem;
  }
  .about .features-container {
    width: 100%;
    gap: 1rem;
  }

  .about .features-container .feature {
    padding: 12px 0px;
  }

  .about .features-container .feature .text-container p {
    font-size: 1rem;
  }

  .contacts {
    padding: 0;
  }
  .contacts .contacts-content {
    flex-direction: column;
  }

  .contacts .contacts-container {
    width: 100%;
  }

  .contacts .text-container {
    width: 100%;
  }
  .contacts .contacts-container {
    margin: 0;
    padding: 5%;
  }

  .contacts .contacts-container .text-container {
    width: 100%;
  }

  .contacts input#submit {
    padding: 6px 0px;
  }

  footer img {
    width: 100px;
    /* display: block; */
  }

  body footer div {
    flex-direction: column;
    gap: 0.5rem;
  }
  footer .footer-content .second-line .services {
    flex-wrap: wrap;
  }

  footer .footer-content .second-line .services a {
    padding: 0.5rem;
  }
}


@media (min-width: 800px) and (max-width:1200px){
  #menu-toggle {
  display: none;
}

.menu-btn {
  display: none;
}
.logo-container {
  display: block;
}
header nav {
  flex-direction: column;
}
header nav ul.links {
    display: flex;
  }
  .product .card-container {
  grid-template-columns: repeat(2, 1fr);
  }

  main .main-content .text-background {
    width: 500px;
  }

}