@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@200;300;400;500;600&display=swap');

*{
    font-family: 'Nunito', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
    text-decoration: none;
    transition: all .2s linear;
}

html{
    font-size: 62.5%;
    overflow-x: hidden;
    background-color: #f2feff;
}

section{
    padding: 5rem 10%;
}

.heading{
    text-align: center;
    margin-bottom: 3rem;
    font-size: 3.5rem;
    text-transform: capitalize;
    color: #444;
}

.blog .box-container{
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (minmax(30rem, 1fr))[auto-fit];
        grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
    gap: 2rem;    
}

.blog .box-container .box:hover .image img{
    transform: scale(1.1);
}

.blog .box-container .box.shadow{
    box-shadow: 0px 18px 39.1px 6.9px rgba(224, 241, 255, 0.34) !important;
}


.blog .box-container .box .image{
    height: 25rem;
    overflow: hidden;
    position: relative;
}

.blog .box-container .box .image img{
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover; 
}

.blog .box-container .box .image h3{
    background-color: #fff;
    color: #444;
    position: absolute;
    top: 2rem;
    left: 1rem;
    padding: .5rem 1.5rem;
    font-size: 1.5rem;
    border-radius: 15px;
}

.blog .box-container .box .image h3 i{
    color: #bd1818;
}

.blog .box-container .box .content{
    padding: 2rem;
    background-color: #fff;
}

.blog .box-container .box .content h3{
    font-size: 2rem;
}

.blog .box-container .box .content p{
    font-size: 1.5rem;
    padding: 1rem 0;
    line-height: 2;
    color: #777;
}

.btn{
    display: inline-block;
    margin-top: 1rem;
    padding: 0.8rem 2rem;
    font-size: 1.2rem;
    border: 0.1rem solid #1878bd;
    background: #f2feff;
    color: #1878bd;
    cursor: pointer;
    text-transform: capitalize;
}

.btn:hover{
    background: #1847bd;
    color: #f2feff;
}


  
.company-name{
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .company-logo{
    height: 110px;
    width: 100px;
    padding: 8px;
  }
  
  .image-logo{
    height: 100px;
    width: 100%;
    object-fit: cover;
  }
  
   #logo {
      color: white;
      font-size: 32px;
      font-weight: bold;
      padding: 4px;
      margin-top: 25px;
  }
  
  #logo-name {
      font-size: 32px;
      font-weight: bold;
  }
  
  #nav-text {
    
    padding: 16px;
    font-size: 21px;
       
  }
  
  #nav-text a{
    
    color: grey;
    text-decoration: none;
    
       
  }
  
  #navigation {
      width: 100%;
      height: 75px;
        display: flex;
        justify-content: center;
        align-items: center;
      position: sticky;
      padding: 0px;
      top: 0px;
      background-color: white;
  }
  
    #headline{
    
    color: grey;
    
    }
  
    a {
    
    color: gray;
    text-decoration: none;
    margin-left: 16px;
    }
  
  #navigation a:hover {
      color: rgb(0, 136, 255);
  }
  
  
  #main {
      max-width: 1200px;
      margin: auto;
      padding-left: 16px;
      padding-right: 16px;
  }
  
  #footer {
      text-align: center;
      color: gray;
      padding: 16px;
      font-size: 16px;
        
  }
  
     .copyright{
    margin-right: 16px;
  }
  
  .legal-text{
    margin-right: 16px;
  }
  
    .legal-text a:hover{
    
    color: rgb(0, 136, 255);
    
    }
  
  
    .privacy-policy a:hover{
    
    color: rgb(0, 136, 255);
    }

    @media screen and (max-width: 700px) {
       
        #logo-name {
          font-size: 29px;
          font-weight: bold;
          padding: 4px;
      }
    }
