@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Oswald:wght@200..700&display=swap');
*{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    font-family: 'lato',sans-serif;
     
}
body{
  background: linear-gradient(#eceffe, #ced6fb);
}

html {
    font-size: 10px;
}

li {
    list-style: none;
}

a {
    text-decoration: none;
}

h1 {
    font-size: 1.9rem;
}

p {
    font-size: 1.5rem;
}



header {
    width: 100%;
    height: 5rem;
    background-color: aliceblue;
    /* position: fixed; */
    top: 0;
    z-index: 333;
}

.mobile-nav {
    display: none;
}

.containerr {
    width: 96%;
    max-width: 117rem;
    margin: 0 auto;
}

.navbar {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 1.5rem;
}

.navbar h1 {
    text-transform: uppercase;
    color: #5b5963;
    font-weight: 600;
    letter-spacing: 2px;
    cursor: pointer;
}

.navbar ul {
    display: flex;
    justify-content: center;
    align-items: center;
}

.navbar ul a {
    font-size: 1.2rem;
    padding: 1.5rem;
    text-transform: uppercase;
    color: #5b5963;
    font-weight: 400;
    letter-spacing: 2px;
    transition: all 0.4 ease;
}

.navbar ul a:hover {
    color: white;
    background-color: #fd735a;
}

.navbar .menu {
    display: none;
}



 .boody {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
     /* background: linear-gradient(#eceffe, #ced6fb);  */
} 



.card-list .card-item {
    list-style: none;
}
.card-wrapper{
    max-width: 1100px;
    margin: 0 60px 35px;
    padding: 20px 10px;
    overflow: hidden;
   
}
.card-list .card-item .card-link {
   user-select: none;
    display: block;
    background: #fff;
    padding: 18px;
    border-radius: 12px;
    text-decoration: none;
    border: 2px solid transparent;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.05);
    transition: 0.2s ease;
  
}
.card-list .card-item .card-link:active{
    cursor: grabbing;
}

.card-list .card-item .card-link:hover {
    border-color: #5372f0;
}


.card-list .card-link .card-image {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    border-radius: 10px;
}

.card-list .card-link .badge {
    color: #5372f0;
    padding: 8px 16px;
    font-size: 0.95rem;
    font-weight: 500;
    margin: 16px 0 18px;
    background: #dde4ff;
    width: fit-content;
    border-radius: 50px;
}

.card-list .card-link .card-title {
    font-size: 2.19rem;
    color: #000;
    font-weight: 700;
    font-family: "inter", sans-serif;
}


.card-list .card-link .card-button {
    height: 35px;
    width: 35px;
    color: #5372f0;
    border-radius: 50%;
    margin: 30px 0 5px;
    background: none;
    cursor: pointer;
    border: 2px solid #5372f0;
    transform: rotate(-45deg);
    transition: 0.4s ease;
}

.card-list .card-link:hover .card-button {
    color: #fff;
    background: #5372f0;
}
.card-wrapper .swiper-pagination-bullet {
    height: 13px;
    width: 13px;
    opacity: 0.5;
    background: #5372f0;
}
.card-wrapper .swiper-pagination-bullet-active {
    opacity: 1;
}

.card-wrapper .swiper-slide-button{
    color: #5372f0;
    margin-top: -35px;
}



/* blog */


.blog-section {
  width: 100%;
  
}


.blog-section .section-content {
    width: 85%;
    margin: 67px auto;
}


.blog-section .section-content .title {
  width: 60%;
  text-align: center;
  margin: auto;
}

.blog-section .section-content .title h2 {
  font-size: 40px;
  color: #23d25d;
  text-transform: uppercase;
}

.blog-section .section-content .title p {
  font-size: 18px;
  color: #6a6a6a;
  margin-top: 20px;
}

.blog-section .section-content .cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 50px;
  margin: 25px auto;
}

.blog-section .section-content .cards .card {
  width: 100%;
  background-color: #f7f7f7;
  position: relative;
}

.blog-section .section-content .cards .card img {
  width: 100%;
  height: auto;
}

.blog-section .section-content .cards .card .article {
  padding: 15px 20px;
}

.blog-section .section-content .cards .card .article h4 {
  font-size: 24px;
  color: #4a4a4a;

}

.blog-section .section-content .cards .card .article p {
  font-size: 16px;
  margin: 10px 0px;
  color: #6a6a6a;
}

.blog-section .section-content .cards .card  a {
  text-decoration: none ;
  display:inline-block;
  background-color: #25c5c5;
  padding: 8px 15px;
  margin-left:20px ;
  color: #fff;
  margin-bottom: 20px;
}
.blog-section .section-content .cards .card .posted-date p {
font-weight: 600;
position: absolute;
top: 0;
left: 0;
display: inline-block;
background-color: #25c5c5;
padding: 6px 15px;
}
@media screen and (max-width:992px){
  .blog-section .section-content .cards{
      grid-template-columns: repeat(2,1fr);
  }
  
}
@media screen and (max-width:768px){
  .blog-section .section-content .cards{
      grid-template-columns: 1fr;

  }
}


/* footer */

.containerr {
    max-width: 1170px;
    margin: auto;
  }
  
  .row {
    display: flex;
    flex-wrap: wrap;
  }
  
  ul {
    list-style: none;
  }
  
  .footer {
    background-color: #24262b;
    padding: 70px 0;
  }
  
  .footer-col {
    width: 25%;
    padding: 0 15px;
  }
  
  .footer-col h4 {
    font-size: 18px;
    color: #ffffff;
    text-transform: capitalize;
    margin-bottom: 35px;
    font-weight: 500;
    position: relative;
  }
  
  .footer-col h4::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    background-color: #e91e63;
    height: 2px;
    box-sizing: border-box;
    width: 50px;
  }
  
  .footer-col ul li:not(:last-child) {
    margin-bottom: 10px;
  }
  
  .footer-col ul li a {
    font-size: 16px;
    text-transform: capitalize;
    color: #ffffff;
    text-decoration: none;
    font-weight: 300;
    color: #bbbbbb;
    display: block;
    transition: all 0.3s ease;
  }
  
  .footer-col ul li a:hover {
    color: #ffffff;
    padding-left: 8px;
  }
  
  .footer-col .social-links a {
    display: inline-block;
    height: 40px;
    width: 40px;
    background-color: rgba(255, 255, 255, 0.2);
    margin: 0 10px 10px 0;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    color: #ffffff;
    transition: all 0.5s ease;
  }
  
  .footer-col .social-links a:hover {
    color: #24262b;
    background-color: #ffffff;
  }
  
  /*responsive*/
  @media(max-width: 767px) {
    .footer-col {
      width: 50%;
      margin-bottom: 30px;
    }
  }
  
  @media(max-width: 574px) {
    .footer-col {
      width: 100%;
    }
  }
  
  /* slid */
  
  @media screen and (max-width:768px) {
    .card-wrapper{
        margin: 0 10px 25px;
    }
    .card-wrapper .swiper-slide-button{
        display: none; 
       
    }
    
}
  
  
  /* fooo */
  


@media (max-width:768px) {
    header{
        position: absolute;
    }

    .navbar {
        width: 80%;
    }



    .navbar ul {
        display: none;
    }

    .navbar .menu {
        display: block;
        cursor: pointer;
        font-size: 23px;
    }

    .mobile-nav {
        background-color: aliceblue;

    }

    .mobile-nav ul a {
        display: inline-block;
        padding: 1rem;
        font-size: 1.4rem;
        text-transform: uppercase;
        width: 100%;
        color: #5b5963;
        transition: all 0.4s ease;
    }

    .mobile-nav ul a:hover {
        color: white;
        background-color: #fd735a;
    }

    .mobile-nav.active {
        display: block;

    }

    .mobile .menu i {
        font-size: 2.5rem;
    }}
