:root {
  --cornflower-blue-2: #7d99ba;
  --white: white;
  --black: #161a25;
  --steel-blue: #557696;
  --cornflower-blue: #679ac9;
  --dodger-blue: #068ff6;
  --black-2: #333;
  --dark-slate-blue: #223750;
}

.w-layout-grid {
  grid-row-gap: 16px;
  grid-column-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

h2 {
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 2.5em;
  font-weight: 500;
  line-height: 1.2em;
}

.body {
  font-family: Nunito, sans-serif;
  font-size: 18px;
  line-height: 1.75em;
}

.why-choose-section {
  background-color: #2237501a;
  justify-content: space-between;
  align-items: center;
  width: 90%;
  margin-top: 5%;
  margin-left: auto;
  margin-right: auto;
  padding: 5%;
  display: flex;
margin-bottom: 5%;
}

.why-choose {
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  width: 40%;
  display: flex;
}

.h2-no {
  margin-bottom: 0;
}

.grid {
  grid-column-gap: 25px;
  grid-row-gap: 25px;
  grid-template-rows: auto auto auto;
  grid-template-columns: 1fr 1fr;
  width: 55%;
}

.why-div {
  border: 2px solid var(--cornflower-blue-2);
  flex-flow: column;
  align-items: flex-start;
  padding: 0 10px 10px;
  line-height: 1.3em;
  display: flex;
}

.why-div.lg {
  background-color: var(--cornflower-blue-2);
  color: var(--white);
  margin-top: 40px;
}

.why-icon {
  background-color: var(--cornflower-blue-2);
  border-radius: 100%;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  margin-top: -20px;
  margin-bottom: 10px;
  padding: 8px;
  display: flex;
}

@media screen and (max-width: 991px) {
  .why-choose-section {
    flex-flow: column;
  }

  .why-choose {
    width: 100%;
  }

  .grid {
    width: 100%;
    margin-top: 40px;
  }
}

@media screen and (max-width: 767px) {
  h2 {
    font-size: 2em;
  }
}

@media screen and (max-width: 479px) {
  .grid {
    grid-template-columns: 1fr;
  }
}


