* {
  margin: 0;
  padding: 0;
  font-family: Inter;
}

body {
  background-color: white;
}

.homeContainer {
  box-sizing: border-box;
  width: 100vw;
  height: 100vh;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  overflow: hidden;
  color: #404040;
}

.left {
  box-sizing: border-box;
  width: 50%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  background-color: white;
  padding: 1rem 0 0 8rem;
  overflow: hidden;
}

.homeContainer .left img {
  width: 7rem;
}
.homeContainer .left .mainContainer  {
  box-sizing: border-box;
  height: auto;
} 

.homeContainer .left .mainContainer .header {
  font-family: Inter;
  font-size: 3rem;
  font-style: normal;
  font-weight: 600;
  letter-spacing: -2px;
  line-height: .95;
  color: #000;
  margin-bottom: 1.5rem;
} 

.homeContainer .left .mainContainer .body {
  font-family: Inter;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.15;
  text-align: left;
  color: #000;
  margin-bottom: 1.5rem;
}

.homeContainer .left .mainContainer .inputBox {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  margin: 1rem 0;
  margin-bottom: 1.5rem;
}

.homeContainer .left .mainContainer .inputBox input {
  box-sizing: border-box;
  width: auto;
  margin: 0;
  padding: 0.75rem 1rem;
  border: none;
  border-radius: 50px 0 0 50px;
  color: #000;
  background-color: #f1f2f4;
  font-size: 1rem;
  font-weight: 400;
  outline: none;
}

.homeContainer .left .mainContainer .inputBox button {
  box-sizing: border-box;
  background-color: #1A56DC;
  color: #fff;
  border-radius: 0 50px 50px 0;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  border: none;
  line-height: 1.15;
  margin: 0;
}


.homeContainer .left .mainContainer .footer {
  box-sizing: border-box;
  font-family: Inter;
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.15;
  text-align: left;
  color: #a7a7a7;
  margin-bottom: 1.5rem;
}

.right {
  box-sizing: border-box;
  width: 50%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-content: flex-start;
  padding: 0 8rem 0 3rem;
  color: #fff;
  background-color: #1A56DC;
  overflow: hidden;
}

.right .grid {
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  display: grid;
  justify-content: center;
  align-content: center;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 40px;
  row-gap: 20px;
}

.right .grid .infoBox {
  padding: 2rem 1rem;
  border-radius: 1rem;
}
.right .grid .infoBox h1 {
  padding-bottom: 1rem;
}
.right .grid .infoBox p {
  background-color: transparent;
}
.right .grid .colored {
  background-color: #000;
}

@media screen and (max-width: 1000px){
  .homeContainer {
    flex-direction: column;
    overflow-y: scroll;
  }

  .left {
    width: 100%;
    height: auto;
    padding: 1rem 4rem 0 4rem;
    overflow: visible;
  }
  .left :not(:last-child) {
    margin-bottom: 5rem;
  }

  .right {
    width: 100%;
    height: auto;
    justify-content: flex-start;
    align-content: flex-start;
    padding: 3rem;
    overflow: visible;
  }
}

@media screen and (max-width: 600px){
  .homeContainer {
    flex-direction: column;
    overflow-y: scroll;
  }

  .left {
    width: 100%;
    height: auto;
    padding: 1rem 2rem 0 2rem;
    overflow: visible;
  }
  .left :not(:last-child) {
    margin-bottom: 5rem;
  }

  .right {
    width: 100%;
    height: auto;
    justify-content: flex-start;
    align-content: flex-start;
    padding: 2rem;
    overflow: visible;
  }

  .right .grid {
    grid-template-columns: repeat(1, 1fr);
    column-gap: 0px;
  }
  .right .grid .colored {
    background-color: transparent;
  }
  .right .grid :nth-child(even) {
    background-color: #000;
  }
}
