@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: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: calibri;
  }


  
  

  li {
      list-style: none;
  }
  
  a {
      text-decoration: none;
  }
  
  h1 {
      font-size: 1.9rem;
  }
  
  p {
      font-size: 1.5rem;
  }
  
  /* html {
    font-size: 10px;
} */

  
  header {
      width: 100%;
      height: 5rem;
      background-color: aliceblue;
      /* position: fixed; */
      top: 0;
      z-index: 333;
     
  }
  
  .boody{
    background: linear-gradient(#eceffe, #ced6fb);
    font-size: 10px;
  }

  .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: 14px;
      /* 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;
  }
  
  





html {
    /*   *****   Storing Colors In Variables   *****  */
    --body-clr: #f6f9fe;
    --primary-clr: #05555c;
    --primary-light-clr: #eaf3fa;
    --links-clr: #186f78;
    --text-clr: #3f7277;
  }
  
  body {
    width: 100%;
  
  }


   
  
  .heading {
    
    width: 100%;
    max-width: 98rem;
    padding: 2rem;
    background-color: #dbf4ff21;
    box-shadow: 0 1.4rem 8rem rgba(0, 0, 0, 0.2);
    /* display: flex; */
    align-items: center;
    border-radius: .8rem;
    margin: 10px;
  
  }
  
  .heading p{
    align-items: center;
    font-family: calibri;
    font-size: 1.4rem;
    color: #0f0101b3;
    
  }






div.gallery {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
  }
  
  div.gallery .item {
    position: relative;
    margin: 4px;
    width: calc(33.33% - 8px);
    overflow: hidden;
    cursor: pointer;
  }
  
  .item h1 {
    display: flex;
    justify-content: center;
  
  }
  
  .item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: 0.3s;
  }
  
  div.gallery .item:hover img {
    transform: scale(1.15);
  }
/*    */



/* content end */


.bodyy {

    background: #eee;
  
    padding: 0 1.5rem;
  
  }
  
  
  
  .container h2 {
    letter-spacing: 1px;
    font-size: 50px;
    color: #6968aa;
    padding: 10px;
    /* CHANG */
    border: 2px dashed #0181a0;
    text-transform: uppercase;
    display: inline-block;
    cursor: pointer;
    text-align: center;
    margin-top: 90px;
    margin-left: 375px;
  }
  
  
  .blog-post {
    width: 100%;
    max-width: 98rem;
    padding: 5rem;
    background-color: #dbf4ff21;
    box-shadow: 0 1.4rem 8rem rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    border-radius: .8rem;
    margin: 10px;
  
  }
  
  .blog-post_img {
    max-width: 35rem;
    height: 30rem;
    transform: translatex(-8rem);
    position: relative;
  
  }
  
  .img1 {
    width: 409px;
   
    /* width: 375px; */
    height: 245px;
    object-fit: contain;
    display: block;
    
  }
  
  .blog-post_img img::before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0%;
    left: 0;
    box-shadow: .5rem .5rem 3rem 1px rgba(0, 0, 0, 0.5)
  }
  
  .blog-post_date span {
    display: block;
    color: #00000080;
    font-size: 1.6rem;
    font-weight: 600;
    margin: .5rem 0;
  }
  
  
  .blog-post_title {
    font-size: 2.5rem;
    margin: 1.5rem 0 2rem;
    text-transform: uppercase;
    color: #4facfe;
  
  
  }
  
  .blog-post_text {
    margin-bottom: 3rem;
    font-size: 1.4rem;
    color: #0c0c0cb3;
    font-weight: bold;
    
  
  }
  
  
  
.portfolio {


  width: 100%;
  padding: 30px 8%;
  background-color: var(--body-clr);
}
  
  
  .blog-post_cta {
    display: inline-block;
    padding: 1.5rem 3rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 1.2rem;
    color: #ffff;
    border-radius: .8rem;
    text-decoration: none;
    background: linear-gradient(to right, #c945cf 0%, #04a6bd 100%);
  
  }
  
  .blog-post_cta:hover {
    background: linear-gradient(to right, #04a6bd 0%, #c945cf 100%);
  }
  
  .read-more-state {
    display: none;
  }
  
  .read-more-target {
    max-height: 0;
    opacity: 0;
    font-size: 0;
    transition: 0.45s ease;
    
    display: inline-block;
    
  }
  
  .read-more-state:checked~.blog-post_text .read-more-target {
    opacity: 1;
    font-size: inherit;
    
  }
  
  .read-more-state~.blog-post_cta::before {
    content: 'READ MORE';
  
    
    
  }
  
  .read-more-state:checked~.blog-post_cta::before {
    content: ' READ LESS';
  }
  

  .ht {
    letter-spacing: 1px;
    font-size: 50px;
    color: #6968aa;
    padding: 10px;
   
    border: 2px dashed #0181a0;
    text-transform: uppercase;
    display: inline-block;
    cursor: pointer;
    text-align: center;
    margin-top: 0px;
    margin-left: 375px;
  }
  /* ffffffffffffffffff */


  /* a */

/* ffffffffffffffffffffff */

  footer {
    background-color: #222;
    padding: 3rem 0;
}

.icons {
    text-align: center;
}

.icons .social i {
    font-size: 3rem;
    color: grey;
    padding: 1rem;
    transition: all 0.4s ease;
}

.icons .social i:hover {
    color: white;
    cursor: pointer;
}

.icons .copyright p {
    font-size: 1.2rem;
    letter-spacing: 1px;
    color: white;
    margin: 2rem 0;
}






/* css post */
@media screen and (max-width:1092px) {


    .bodyy {
  
  
      background: #eee;
      padding: 0;
      margin-left: -9px;
  
    }
  
  
    .container {
      overflow: hidden;
      margin-top: -5px;
      display: block;
    }
  
    .container h2 {
      margin-top: 193px;
      margin-left: 179px;
    }
  
    .blog-post {
      flex-direction: column;
    }
  
    .blog-post_text {
      margin: -61px;
      margin-top: 2px;
    }
  
    .blog-post_date {
  
      visibility: hidden;
    }
  
    .blog-post_title {
      margin-top: -293px;
      margin-left: -44px;
    }
  
    .img1 {
      margin-left: 234px;
      width: 308px;
      height: 281px;
      object-fit: contain;
      display: block
    }
  
    .blog-post_cta {
      margin-top: 94px;
    }
  
    .blog-post_cta:hover {
      background: linear-gradient(to right, #04a6bd 0%, #c945cf 100%);
    }
  
  }
  
  @media screen and (max-width:768px) {
  
    .container h2 {
      margin-top: 105px;
      margin-left: 65px;
    }

    .ht {
      margin-top: 105px;
      margin-left: 23px;
    }
  
    .blog-post_img {
      margin-left: 5px;
      max-width: 35rem;
      height: 30rem;
    }
  }
  
  /* css post ent */









@media(max-width: 1024px) {
    div.gallery .item {
      width: calc(50% - 8px);
    }
  }

  @media(max-width: 600px) {
    div.gallery .item {
      width: 100%;
      /* margin: 4px 0px;  */

      margin: 14px -2px;


    }
  }


  

@media (max-width:768px) {
  header{
      position: absolute;
      margin: 2px;
  }
.boody{
  
margin-bottom: 98px;
  
}
  .navbar {
      width: 94%;
    
  }



  .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;
  }}

