body,*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
.fullpage{
    width:100%;
}
.hero{ border-bottom:1px solid green;}
.top-hero{
    display: grid;
    grid-template-columns: max-content max-content; 
    grid-template-rows:40px;
    justify-content: space-between;
    align-items: center;
    padding: 50px 60px;
}

.top-hero-img{
   display: flex;
   align-items: center;
}

#logo-name
{   
    margin-left: 8px;
    font-weight: 400;
    font-size: 45px;
    color: green;
}
#logo-name::first-letter{font-size: 55px;color: red;}

.menu-bar{ font-size: 50px;}
.mid-hero{
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(400px,1fr));
    grid-template-rows:auto;
    margin-top:40px;
    justify-items:center;
      
}
.mid-right-content{justify-self:start;
    padding-left: 40px;
    margin-top: 40px;}
.right-top-offer
{
    width: 205px;
    height: 35px;
    background: #149F39;
    line-height:35px;
    text-align:center;
    margin-top: 20px;
    color: white;
    font-size: 14px;
}
.right-mid-heading{
    margin-top: 20px;
    font-size: 72px;
   font-weight: 500;
   color: #000000;
}
.right-bottom-para{
    margin-top: 10px;
    text-align: left;
    width:400px;
}
.like-button
{
    width: 174px;
    height: 57px;
    background: #FFC066;
    margin-top: 35px;
    border: none;
    border-radius: 5px;
    box-shadow: 0px 0px 5px 1px;
}
.like-button a{
    text-decoration: none;
    color: white;
     font-size: 20px;
}
.like-button:hover{background-color: green;}
.like-button a:hover{color:#FFC066;}
.bottom-hero{
    display: grid;
    width: 90%;
    grid-template-columns: repeat(auto-fit,minmax(260px,1fr));
    row-gap: 30px;
    margin: 50px auto;
    column-gap: 5px;
}
.bottom-hero-cards{
    display: flex;
    padding: 20px;
}
.bottom-hero-content{  
    padding: 10px;
}
.bottom-card-heading
{
    font-size: 20px;
    margin-bottom:5px;
    font-weight:bolder;
}
.after-hero
{
   
    min-width: 137px;
    max-width: fit-content;
    height: 43px;
    background: #149F39;
    margin: 40px auto;
    padding: 10px;
    text-align: center;
    color: white;
    font-size: 20px;
}
.gallery-heading
{
    font-size: 32px;
    text-align: center;
    margin-top: 5px;
}
.grid-gallery-parent
{
    display:grid;
    min-width:891px;
    max-width:fit-content;
    grid-template-columns:1fr 1fr 1fr 1fr;
    grid-template-rows:1fr 1fr 1fr;
    box-sizing: border-box;
    grid-gap: 20px;
    margin: 30px auto;
}
.grid-1 img,.grid-2 img,.grid-3 img,.grid-4 img,.grid-5 img,.grid-6 img,.grid-7 img{border-radius: 15px;}
.grid-1{
    grid-column: 1/3;
    grid-row: 1/3;
}
.grid-2
{
    grid-area: 1/3/3/4;
}
.grid-7{
    grid-column:4/5 ;
    grid-row: 2/4;
}

.footer{
    width:100%;
    background-color:rgb(45, 42, 42);
    display: flex;
    min-height: 322px;
    justify-content: space-around;
    align-items: center;
    margin-top: 100px; 
    color: white;
}
.footer-child
{
    display: flex;
    flex-direction: column;
    line-height: 30px;
    letter-spacing: 3px;
}
.footer-child ul li{list-style-type: none;}
.footer-child ul li:hover{color:GREEN; cursor: pointer;}
.footer-child h3:hover{color:yellowgreen; cursor: pointer;}

.footer-icons
{
    display: flex;
    justify-content: space-between;
    line-height: 60px;
  
}
#logo-section
    {
    display: flex;
    flex-direction: row;
    height: 150px;
    }

#footer-logo-name
{
    margin-left: 10px;
    font-size: 25px;
    margin-top: 10px;
   
}

#footer-logo-name::first-letter{color:red;   font-size: 35px;}

#follow-us{
    font-size: 20px;
    color:rgba(86, 86, 86, 1);
}
@media screen and (max-width:640px) {
      .footer{
        display: grid;
        width: 400px;
        grid-template-columns: 1fr;
        grid-template-rows: repeat(4,1fr);
        row-gap: 15px;
        padding: 30px;
      }
      .grid-gallery-parent
        {
            display: flex;
            flex-direction: column;
            padding-left: 50px;       
        }
        .grid-1 img,.grid-2 img,.grid-3 img,.grid-4 img,
        .grid-5 img,.grid-6 img,.grid-7 img{width:50%;
        background-size: cover;}
  
     
  
    

       
    
}

