body{
    margin:0;
    padding: 0;
    box-sizing: border-box;
    font-family: prompt;
}

/* PC Size */

.grid-container{
    margin-top: 10%;
    padding: 0 80px;
    width: 100%;
    display: grid;
    justify-content: center;
    justify-items: center;
    grid-template-columns: 1fr 1fr;
    gap: 20%;
    color: #1C70BC;
}

.grid-item{
    padding-left: 60px;
}


#problem {
    width: 100%;
    height: 100vh;
    background: url("../img/hero-bg7.jpg")top center;
    background-size: cover;
    position: relative;
}
#problem {
    width: 100%;
    height: 100vh;
    background: url("../img/hero-bg7.jpg")top center;
    background-size: cover;
    position: relative;
}

#cta {
    width: 70%;
    height: 100vh;
    background: url("../img/bg-contact.jpg");
    margin: 0 auto;
    background-size: cover;
    background-position: center;
    position: relative;
}
.contactoverlay {
    display: flex;
    width: 100%;
    height: 80vh;
    background: url("../img/bg-contacts.jpg");
    margin: 0 auto;
    background-size: cover;
    background-position: center;
    position: relative;
}
.col-6{
    margin-top: 20px;
}

.grid-item h6{
    font-size: 22px;
}
.grid-item h5{
    font-size: 32px;
}

.contactimg{
    background: #EAEBF0;
    margin: 0 auto;
  }

  .grid-contact{
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 3fr 3fr;
    width: 60%;
    padding-top: 40px;
    column-gap: 10px;
    row-gap: 50px;
  }
  .gridbox{
    width: 300px;
    margin: 0 auto;
    height: 160px;
    background: white;
    border-radius: 18px;
    text-align: center;
    justify-content: center;
  
  }
  .gridicon{
    width: auto;
  
  }
  .gridicon img{
    width: 60px;
    margin-left: auto;
    margin-top: -25px;
  }
  #contact{
    margin: 0;
    padding: 0;
    padding-bottom: 40px;
  }


/* Tablet size */
@media (max-width:900px) {

    #cta {
        width: 100%;
        height: 60vh;
    }
    #contact {
        width: 100%;
        height: 60vh;
    }
    .grid-container{
        margin-top: 00%;
        padding: 0 0px;
        width: 100%;
    }
    
    .grid-item{
        width: 80%;
        margin-top: 20px;
        padding-left: 10px;
        font-weight: 300;
        padding-bottom: 20px;
    }
    .grid-item h6{
        font-size: 18px;
    }
    .grid-item h5{
        font-size: 24px;
    }
    .col-6{
        margin-top: 10px;
        display: grid;
    }
    


}





/* Mobile Size */
@media (max-width:600px) {
    .grid-item{
        width: 80%;
        margin-top: 40px;
        padding-left: 10px;
        font-weight: 300;
    }
    .grid-item h6{
        font-size: 16px;
    }
    .grid-item h5{
        font-size: 20px;
    }
    .col-6{
        margin-top: 0px;
        display: grid;
    }
    

}


