@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;
  }
  
  body {
    font-family: "Poppins", sans-serif;
  }
  img{
    width: 100%;
  }
  .container {
    width: max(90%, 1120px);
    margin-inline: auto;
  }

  header {
    padding: 1.6875rem 0;
    
    /* background-image: url("https://askbootstrap.com/preview/landeng/img/slider1.jpg") ; */
    /* height: 150vh; */
  }
  
  .desktop-menue {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    background-color: #fff;
   padding: 1rem 5rem;
    top: 0;
    width: 100%;
    /* background-color: #f1afb0; */
  
   
  }
  
  .logo {
    height: 2.375rem;
  }
  
  .desktop-menue .menues-link {
    display: flex;
    gap: 2rem;
    list-style: none;
  }
  
  .desktop-menue .menues-link a {
    text-decoration: none;
    color: #000;
    font-size: 0.875rem;
    line-height: 21px;
    font-weight: 400;
  }
  
  .desktop-menue .menues-link a:hover {
    background-color: #2761ec;
    padding: 10px 10px;
    border-radius: 10px;
    color: #fff;
  }
  
  .desktop-menue .menues-link-butten {
    display: flex;
    gap: 0.5rem;
    list-style: none;
    align-items: center;
  }
  
  .desktop-menue .menues-link-butten a {
    text-decoration: none;
    color: #000;
    font-size: 0.875rem;
    line-height: 21px;
    font-weight: 400;
  }
  
  .desktop-menue .menues-link-butten a:hover {
    background-color: #2761ec;
    padding: 10px 10px;
    border-radius: 10px;
    color: #fff;
  }
  
  .desktop-menue .menues-link-butten .start {
    background-color: #2761ec;
    padding: 10px 20px;
    border-radius: 10px;
  }
  
  .desktop-menue .menues-link-butten .start a {
    text-decoration: none;
    color: #fff;
    font-size: 0.875rem;
    line-height: 21px;
    font-weight: 400;
  }
  
  .mobile-header {
    display: none;
  }
  
  .mobile-menue {
    display: none;
  }
  .resource-hero{
    height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;

     
  }
  


    .resource-hero .rec-con h1{
    font-size: 3.65rem;
    font-weight: 700;
    line-height:5.625rem;
    color: #0b2238;
    text-align: center;
    
    }
    .rec-con{
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
    }
    .rec-con .search-box {
      margin-top: 1rem;
      display: flex;
      justify-content: center;
      align-items: center;
      background-color: #fff;
      border: 1px solid #d1d5db;
      border-radius: 8px;
      padding: 10px;
      max-width: 50%;
      /* width: 100%; */
  }
  
  .search-box i {
      margin-right: 10px;
      color:#2761ec;
  }
  
  .search-box input {
      border: none;
      outline: none;
      max-width: 100%;
      font-size: 1rem;
      color: #4a5568;
  }
  
  .search-box input::placeholder {
      color: #a0aec0;
  }
    
    .our-resource {
      margin-top: 0.5rem;
    }
    
    .resources {
      display: flex;
      flex-wrap: wrap;
      max-width: 100%;
      gap: 1rem;
      padding: 0 1rem; 
      box-sizing: border-box;  
    }
    
    .resource {
      flex: 1 1 calc(33.333% - 2rem); 
      max-width: calc(33.333% - 2rem); 
      padding: 1rem;
      border: 2px solid hsla(0, 3%, 71%, 0.815);
      margin: 1rem 0;
      box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
      border-radius: 8px;
      margin-bottom: 1rem;
    }
    
    .resource .title-resourse {
      display: flex;
      gap: 0.5rem;
      align-items: center;
    }
    
    .resource .title-resourse h5 {
      font-size: 1.25rem;
      line-height: 1.625rem;
      font-weight: 500;
      color: #212529;
    }
    
    .resource p {
      font-size: 1rem;
      line-height: 1.3125rem;
      font-weight: 400;
      margin-top: 0.7rem;
      color: #6c7a87;
    }
    
    .resource span {
      color: #2761ec;
      font-size: 1rem;
      line-height: 1.3125rem;
      font-weight: 400;
      margin-top: 2rem;
    }
    .popular-articles {
      margin-top: 2.5rem;
    }
    
    .popular-articles .container h2 {
      text-align: center;
      font-size: 2.5rem;
      font-weight: 500;
      color: #212529;
      line-height: 3rem;
    }
    
    .articles {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1rem;
      padding: 0 1rem; /* Add padding to ensure no horizontal scroll */
      box-sizing: border-box; /* Include padding and border in the element's total width and height */
    }
    
    .article {
      display: flex;
      gap: 1rem;
      padding: 2rem 1rem;
      border: 2px solid #d3d0d0d0;
      margin: 1rem 0; /* Adjust margin to avoid overflow */
      box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.1);
      border-radius: 8px;
      width: 100%; /* Ensure the article takes up the full width */
      max-width: 100%; /* Ensure no overflow */
      box-sizing: border-box; /* Include padding and border in the element's total width and height */
    }
    
    .article img {
      width: 3.8300625rem;
      height: 3.8300625rem;
      border-radius: 8px;
    }
    
    .post-article .article h5 {
      line-height: 1.5625rem;
      font-size: 1rem;
      color: #212529;
      font-weight: 700;
    }
    
    .article .post-article p {
      font-size: 0.875rem;
      font-weight: 400;
      line-height: 1.3125rem;
      color: #6c7a87;
    }
    
    .article .post-article span {
      font-size: 0.875rem;
      font-weight: 400;
      line-height: 2.3125rem;
      color: #6c7a87;
      margin-top: 3rem;
    }
    
    .popular-articles .container .more-articles {
      color: #2761ec;
      font-size: 1rem;
      text-align: center;
      line-height: 1.3125rem;
      font-weight: 400;
      margin-top: 2rem;
      display: flex;
      justify-content: center;
      align-items: center;
    }
     .start-now{
      margin-top: 2rem;
      width: 1303px;
      height: 179.391px;
      background-color:#f8f9fa;
      border-radius: 30px 30px 0 0;
      padding: 2rem;
      width: 100%;
      margin-bottom: 0.3rem;


     }
     .text-start h2{
      font-size: 2.5rem;
      line-height: 3.625rem;
      font-weight: 500;
     }
     .text-start p{
      font-size: 0.875rem;
      font-weight: 400;
      line-height: 1.3125rem;
       color: #6c7a87;

     }
     .start-bussines{
      display: flex;
      justify-content: space-around;
      align-items: center;
      cursor: pointer;

     }
     .actions{
      display: flex;
      gap: 1rem;
      
     }
    
     .actions .btn{
      padding: 1rem 2rem;
      text-align: center;
      border-radius: 8px;
      cursor: pointer;
     }
    
     .actions .start{
    background-color: #2761ec;
    border: none;

     }
     .actions .view{
      border: 1px solid #2761ec;
      background-color: #fff;
     }
     .actions .view:hover{
      background-color: #2761ec;
     }
     footer{
      background-color: #f8f9fa;
      padding: 2rem  0;
    }
    
    footer .concludes {
      display: flex;
      gap: 1rem;
      width: 100%;
      align-items: center;
     
    }
    
    footer .concludes .social-media {
      width: 30%;
      display: flex;
      flex-direction: column;
      
    }
    footer .concludes .social-icons {
     margin: 1.5rem;
     font-size: 1.5rem;
     color: #2761ec;
      
      
    }
    
    footer .concludes .operations {
      width: 70%;
      display: flex;
      gap: 7rem;
    }
    
    
    footer .concludes .operations .operation-part-one {
    
      display: flex;
      gap: 7rem;
    }
    
    footer .concludes .operations  p {
     font-size: 0.875rem;
     font-weight: 700;
     line-height: 1.3125rem;
     color:  rgb(108, 122, 135);
     margin-bottom: 1.3rem;
    }
    footer .concludes .operations ul li {
      list-style: none;
      padding: 0.5rem 0;
    }
    footer .concludes .operations ul li a {
     text-decoration: none;
     color: #000;
     font-size: 0.875rem;
     font-weight: 500;
     line-height: 1.3125rem;
    }
    footer .concludes .operations ul li a:hover {
      color: #2761ec;
     
    }
    
    .copy-right{
      display: flex;
      justify-content: space-between;
      padding: 1rem;
    }
    
     .copy-right  p {
      font-size: 0.875rem;
      font-weight: 400;
      line-height: 1.3125rem;
      color:  rgb(108, 122, 135);
     
     }
     .copy-right  p span {
      color: #0056b3;
      font-weight: 700;
     }
     @media (max-width: 1200px) {
      .articles {
        grid-template-columns: 1fr; /* For 1 item per row */
      }
    }
     @media (max-width: 768px) {
      .desktop-menue {
        display: none;
      }
    
    
      .mobile-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px 10px;
        position: fixed;
        top:0 ;
        width: 100%;
        z-index: 1111;
    
    
        background-color: #fff;
      }
    
       .hamburger i {
        background-color: #2761ec;
        padding: 5px 10px ;
        border-radius: 5px;
        color: white;
      }
    
      .hamburger {
        font-size: 2rem;
        cursor: pointer;
      }
    
      .mobile-menue {
        /* display: flex; */
        flex-direction: column;
        /* background-color: #fff; */
        transform: translateY(-100%);
        /* transform: translateY(0%); */
        transition: transform 350ms ease-in-out;
        position: fixed;
        top: 70px;
        width: 100%;
        z-index: 5;
        background-color: #fff;
      }
    
      .mobile-menue[data-visible="true"] {
        transform: translateY(0%);
      }
      .mobile-menue[data-visible="false"] {
        transform: translateY(0%);
        display: flex;
      }
    
      .hamburger i[data-visible="false"] {
        display: none;
      }
    
      .hamburger i[data-visible="true"] {
        display: block;
      }
    
      .navigation .menues-link {
        display: flex;
        flex-direction: column;
        gap: 25px;
        text-align: center;
        margin-top: 1rem;
        padding-bottom: 1rem;
      }
    
      .navigation .menues-link li  a{
       text-decoration: none;
        color: black;
      }
    
      .navigation .menues-link  .start{
        background-color: #2761ec;
        padding: 10px 20px;
        border-radius: 10px;
        margin: 0 20px;
        list-style: none;
    
      }
    
      .navigation .menues-link  .start a {
        color: white;
      }
      .resource-hero .rec-con h1 {
        font-size: 2.5rem;
        line-height: 4rem;
    }
  .search-box input {
      width: 50%; 
      font-size: 1rem;
      text-align: center;
  } 


.articles {
  grid-template-columns: 1fr; 
}

.resources {
  grid-template-columns: 1fr;
  padding: 0 0.5rem; 

}

.resource {
  flex: 1 1 100%; 
  max-width: 100%; 
  margin: 1rem 0; 
}

.article {
  flex-direction: column; /* Stack the content vertically */
  align-items: center;
  text-align: center;
  padding: 1rem; /* Adjust padding */
  margin: 1rem 0; /* Adjust margin to avoid overflow */
}

.article img {
  margin-bottom: 1rem; /* Add space below the image */
}

.post-article .article h5 {
  font-size: 1.25rem; /* Adjust font size */
}

.article .post-article p,
.article .post-article span {
  font-size: 1rem; /* Adjust font size */
}

/* Add any other necessary styles to ensure overall responsiveness */
body, html {
    width: 100%;
    overflow-x: hidden; /* Prevent horizontal overflow on the entire page */
}

.container {
    max-width: 100%;
    width: 100%;
    overflow-x: hidden; /* Ensure containers do not cause horizontal overflow */
}

    .start-bussines{
      flex-wrap: wrap;
      align-items: flex-start;

    }
    .start-now{
      width: 90%;
      height: 60vh;
      margin-left: 1rem;
     
    }
   
         
footer {
  display: none;
   
  }
  .copy-right{
    flex-direction: column;
    align-items: center;
  }
  
  

  }

 