
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  html,
  body {
    width: 100%;
    height: auto;
  }
  
  body {
    font-size: 16px;
    font-weight: 400;
    font-style: normal;
    background-color: #f5f6fa;
    font-family: "Poppins", serif;
  }

  html {
    scroll-behavior: smooth;
}

main {
  min-height: 100vh;
}

.container-site {
    max-width: 1100px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px; 
    background: #fff;
  }
  
  @media (max-width: 1200px) {
    .container-site {
      max-width: 1000px;
    }
  }
  
  @media (max-width: 992px) {
    .container-site {
      max-width: 900px;
    }
  }
  
  @media (max-width: 768px) {
    .container-site {
      max-width: 700px;
    }
  }
  
  @media (max-width: 576px) {
    .container-site {
      max-width: 100%;
      padding: 0 15px; 
    }
  }

  .logo {
    width: 200px;
    display: flex;
    
  }

  .logo img{
    width: 100%;
    height: 150px;
    object-fit: cover;
  }

  .card{
    padding: 30px;
    /* border: 1px solid #fff; */
    /* background: #292929; */
    background: #fff;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    margin-bottom: 30px;
  }

  .card-top{
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .card-top i {
    font-size: 20px;
  }

  .card-title {
    display: inline-block;
    font-size: 30px;
    font-weight: 500;
    text-align: center;
  }

  .card-data {
    display: inline-block;
    font-size: 40px;
    /* color: #fff; */
    text-decoration: none;
    text-align: center;
  }

  .card-content {
    line-height: 25px;
    font-size: 18px;
  }

  
  .images-slider {
    margin: 40px 0;
 }

 .image-item img{
   width: 100%;
   height: 350px;
   object-fit: cover;
   border-radius: 12px;
 }


  @media(max-width: 900px) {
    .card-top i {
      font-size: 18px;
    }
  
    .card-title {
      font-size: 24px;
    }

    .card-data {
      font-size: 30px;
    }
  }

  @media(max-width: 600px) {
    .card{
      padding: 20px 30px;

    }
    .card-top i {
      font-size: 18px;
    }
  
    .card-title {
      font-size: 22px;

    }

    .card-data {
      font-size: 22px;

    }

    .image-item img{
      height: 400px;
    }
  }



  
  .galery-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: rgba(0, 0, 0, 0.5);
  }
  
  .galery-modal-content {
    position: relative;
    margin: auto;
    top: 50%;
    transform: translateY(-50%);
    max-width: 1000px;
  }
  
  .galery-close {
    color: white;
    position: absolute;
    top: 10px;
    right: 25px;
    font-size: 35px;
    font-weight: bold;
  }
  
  .galery-close:hover,
  .galery-close:focus {
    color: #999;
    text-decoration: none;
    cursor: pointer;
  }
  
  .galery-mySlides {
    display: none;
  }
  
  .galery-prev,
  .galery-next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -50px;
    color: white;
    font-weight: bold;
    font-size: 40px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
    -webkit-user-select: none;
  
    @media (max-width: 900px) {
      font-size: 18px;
    }
  }
  
  .galery-next {
    right: 0;
    border-radius: 3px 0 0 3px;
  }
  
  .galery-prev:hover,
  .galery-next:hover {
    color: #fff;
  }

  .galery-caption-container {
    text-align: center;
    background-color: black;
    padding: 2px 16px;
    color: white;
  }
  
  img.demo {
    opacity: 0.6;
  }
  
  .galery-active,
  .galery-demo:hover {
    opacity: 1;
  }
  
  img.galery-hover-shadow {
    transition: 0.3s;
    width: 100%;
  }
  
  .galery-hover-shadow:hover {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  }
  
  .galery-mySlides img {
    width: 100%;
    max-height: 500px;
    object-fit: contain;
  }


  header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    
  }


  .phone-btn {
    padding: 14px 22px;
    border-radius: 16px;
    background: rgb(25, 25, 141);
    text-decoration: none;
    color: #fff;
  }

  .phone-btn:hover {
    background: rgb(4, 4, 103);
  }