body{
  margin: 0px;
  padding: 0px;

  width: 100vw;
  height: 100vh;

  overflow: hidden;

  display: flex;
  flex-direction: column;
}

.header{
  width: 100vw;
  height: 150px;

  display: flex;
  flex-direction: row;
  justify-content: center;
  position: absolute;
}

.header svg{
  height: 150px;
}

.content{
  height: 100vh;
  width: 100vw;

  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
}

.content .img img{
  width: 42vw;
  border-radius: 10px;
}

.content .text{
  width: 42vw;
}

.content .text p{
  font-size: 1.6vw;
  font-family: 'Hind Vadodara', sans-serif;
}

.content .text p .name{
  font-weight: bold;
  color: #048125;
}

.content .text hr{
  border: 2px solid #048125;
  border-radius: 5px;
  width: 80%;
}

.content .text .grid{
  margin-top: 32px;

  font-size: 24px;
  font-family: 'Hind Vadodara', sans-serif;

  display: grid;
  grid-template-columns: 50px 1fr;
}

.content .text .grid svg{
  width: 24px;
  height: 24px;
  fill: #048125;
}

.content .text .grid svg g{
  fill: #048125;
}

.content .text .grid .mail{
  text-decoration: none;
  color: #000;
  transition-duration: .3s;
}

.content .text .grid .mail:hover{
  color: #048125;
  transition-duration: .3s;
}

.content .text .grid .phone{
  text-decoration: none;
  color: #000;
  transition-duration: .3s;
}

.content .text .grid .phone:hover{
  color: #048125;
  transition-duration: .3s;
}

@media only screen and (max-width: 1000px ) {
  body{
    height: 100vh;
  }

  .header{
    height: 100px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
  }

  .header svg{
    height: 75px;
  }

  .content{
    flex-direction: column;
    height: cal(100vh - 125px);
    top:100px;
    position: absolute;
    justify-content: center;
    align-items: center;
  }
  .content .img{
    width: 80vw;
    /* height: 100vh; */
    display: flex;
    justify-content: center;
  }

  .content .img img{
    width: 80vw;
    height: auto;
  }
  
  .content .text{
    height: 75vh;
    width: 80vw;
  }

  .content .text p{
    font-size: 2vw;
    font-family: 'Hind Vadodara', sans-serif;
  }

  .content .text .grid{
    margin-top: 16px;
  }
}

@media only screen and (max-width: 750px ) {
  .content .text p{
    font-size: 3vw;
    font-family: 'Hind Vadodara', sans-serif;
  }

}

@media only screen and (max-width: 650px ) {
  .content .text p{
    font-size: 4vw;
    font-family: 'Hind Vadodara', sans-serif;
  }

}