
body {
    font-family: play, sans-serif;
    margin: 0; padding: 0;
    background: #fff;
    color: #333;
}


.header {
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-top: 22px;
}

.logo-image {
    color: #000;
    width: 150px;
}

.logo-underline {
    width: 100%;
    height: 2px;
    background-color: #000;
}

.logo-overline {
    width: 100%;
    height: 2px;
    background-color: #000;
}

.header-info {
    text-align: right;
    min-width: 800px;
}

.header-description-phone-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;          
    flex-direction: column; 
}

.header-description-wrapper { 
    padding-left: 130px; 
}

.header-description {
    font-size: 14px;
    color: #fff;
    line-height: 1.3;
    font-weight: 700;
    padding-top: 20px;
    padding-bottom: 10px;
    max-width: 390px;
    border-bottom: 1px solid #111;
    padding-right: 20px;

}

.header-phone {
    display: flex;
    justify-content: flex-end;
    font-size: 23px;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    padding-left: 20px;
    white-space: nowrap;
}

.header-navigation {
    display: flex;
    justify-content: flex-end;
    gap: 25px;
    text-transform: uppercase;
    font-weight: 700;
    padding-right: 290px;
}



.header-navigation a {
    font-size: 16px;
    color: #fff;;
    text-decoration: none;
}

.header-navigation a:hover {
    text-decoration: underline;
}
main {
    max-width: 960px;
    margin: 20px auto;
    padding: 0 15px;
}
h1 {
    color: #fff;
    font-size: 64px;
}

h2 {
    color: #000000;
    font-size: 55px;
}

h3 {
    color: #29abe2;
    font-size: 35px;
}

h4 {
    color: #fff;
    font-size: 35px;
}

h5 {
    color: #fff;
    font-size: 18px ;
}

h6 {
    color: #29abe2;
    font-size: 18px;
}
 .info_down {
      background-color: rgba(40, 170, 226, 0.9);
      display: flex;
      padding: 20px 130px;
      flex-direction: column;
      color: white;
      text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    }
.info_down2 {
      display: flex;
      padding: 60px 230px;
      flex-direction: column;
      color: white;
      text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.info_down h2 {
      margin-top: 0;
      font-size: 2em;
      font-weight: bold;
      text-align: center;
      margin-bottom: 20px;
    }
    .info_down2 ul {
      list-style: none;
      padding: 0;
      margin: 0;
      display: grid;
      flex-wrap: wrap;
      justify-content: space-around;
      grid-template-columns: 1fr 1fr;
    }

    .info_down2 li {
      width: 45%;
      margin-bottom: 15px;
      position: relative;
      padding-left: 30px;
      font-size: 24px;
      text-align: left;
    }

    .info_down2 li::before {
      content: '\2713';
      color: #29abe2;
      position: absolute;
      left: 0;
      top: 0;
      font-size: 1.5em;
    }



.info_down2 li:nth-child(4) {
    grid-column: 2;      
    grid-row: 1;         
}

.info_down2 li:nth-child(5) {
    grid-column: 2;      
    grid-row: 2;         
}

.info_down2 li:nth-child(6) {
    grid-column: 2;      
    grid-row: 3;         
}

.intro {
    margin-bottom: 15px;
}
.features {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    flex-direction: column;
    align-content: space-around;
}
.feature {
    flex: 1 1 45%;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    font-size: 25px;
    justify-content: center;
}
.feature i {
    color: #29ABE2;
    font-size: 24px;
    width: 30px;
    text-align: center;
}

.feature2 {
    flex: 1 1 45%;
    display: flex;
    align-items: left;
    gap: 10px;
    margin-bottom: 15px;
    font-size: 25px;
    justify-content: left;
}
.feature2 i {
    color: #29ABE2;
    font-size: 24px;
    width: 30px;
    text-align: left;
}
.btn2 {
    display: inline-block;
    margin-top: 20px;
    padding: 20px 35px;
    background: #29ABE2;
    color: white;
    text-decoration: none;
    transition: background-color 0.3s ease;
    font-size: 30px;
    border: #e1e1e1 solid 6px;
}

.btn {
    display: inline-block;
    margin-top: 20px;
    padding: 20px 35px;
    background: #29ABE2;
    color: white;
    text-decoration: none;
    transition: background-color 0.3s ease;
    font-size: 30px;
}


.btn:hover, .btn:focus {
    background: #1f7cb8;
}
.products {
    margin-top: 40px;
}
.product-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
    padding-bottom: 10px;
}
.product-item {
    width: 235px;         
    border: 2px solid #e1e1e1;
    border-radius: 8px;
    overflow: hidden;     
    text-align: center;
    transition: border-color 0.3s ease;
    cursor: pointer;
    display: flex;         
    flex-direction: column;
    justify-content: space-between;
}

.product-item p {
    margin: 10px 10px;      
    font-weight: bold;
    font-size: 21px;      
}

.product-item img {
    width: 100%;
    height: auto;         
    object-fit: cover;   
    flex-grow: 1;       
}

.product-item .btn {
    display: block;  
    margin-top: auto;    
    margin-bottom: 0;       
    padding: 10px 0;         
    background: #29ABE2; 
    color: white;         
    text-decoration: none;
    border-radius: 0;      
    transition: background-color 0.3s ease;
}

.product-item .btn:hover,
.product-item .btn:focus {
    background: #1f7cb8;   
}


.footer {
    background-color: #222;
    color: #fff;
    padding: 15px 160px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin-top: auto;
}

.footer-copyright {
    font-size: 26px;
    color: #fff;
    margin: 0;
}

.footer-button-container {
           display: inline-block; 
}

.footer-button {
    color: #fff;
    padding: 8px 15px;
    text-decoration: none;
    border-radius: 3px;
    font-size: 16px;
}

.footer-button-overline {
    width: 100%;
    height: 2px;
    background-color: #fff;
    margin-bottom: 10px;
}

.footer-phone {
    font-size: 23px;
    font-weight: bold;
    color: #21ABD1;;
    margin: 0;
}

.footer-description-wrapper {  
    padding-left: 130px;  
}

.footer-info {
    text-align: right;
    min-width: 800px;
}


.footer-description {
    font-size: 14px;
    color: #fff;
    line-height: 1.3;
    font-weight: 700;
    padding-top: 20px;
    padding-bottom: 10px;
    max-width: 390px;
    border-bottom: 1px solid #111; 
    padding-right: 20px;

}


@media (max-width: 700px) {
    .feature {
        flex: 1 1 100%;
    }
    .product-item {
        width: calc(50% - 10px);
    }
}
@media (max-width: 400px) {
    header {
        flex-direction: column;
        align-items: flex-start;
    }
    nav {
        margin-top: 10px;
    }
    .product-item {
        width: 100%;
    }
}


.hero {
    background-image: url('/static/logo/home1.jpg'); 
    background-size: cover; 
    background-position: center;
    background-blend-mode: multiply;
    color: white;
    padding: 20px;
    text-align: center; 
    background-color: #4f4f4f;
}
.hero2 {
    background-image: url('/static/logo/info2.webp'); 
    background-size: cover; 
    background-position: center; 
    background-blend-mode: multiply; 
    color: white; 
    padding: 20px; 
    background-color: #4f4f4f;
}





/* @media (max-width: 768px) {

 

  main {
    padding: 0 10px;
  }

  h1 {
    font-size: 48px;
  }

  h2 {
    font-size: 36px;
  }

  h3 {
    font-size: 28px;
  }

  .feature {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
 
  .info_down {
    padding: 20px 20px;
  }

  .info_down2 {
    padding: 20px 20px;
  }

  .info_down2 ul {
    grid-template-columns: 1fr;
  }

  .info_down2 li {
    width: 100%;
  }
   
  .btn,
  .btn2 {
    font-size: 20px;
    padding: 10px 20px;
  }
}


@media (max-width: 480px) {

 
  h1 {
    font-size: 32px;
  }

  h2 {
    font-size: 24px;
  }
     
    .product-item {
      width: 100%;
    }
     
    .feature {
      width: 100%;
    }
 
  .info_down {
    padding: 20px 10px;
  }

  .info_down2 {
    padding: 20px 10px;
  }
 
  .header {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .logo {
    margin-bottom: 10px;
  }

  .header-info {
    text-align: center;
  }

  .header-phone {
    margin-top: 5px;
  }

  .header-navigation {
    flex-direction: column;
    align-items: center;
    margin-top: 10px;
  }
} */
