body {
  font-family: "M PLUS 1p", sans-serif;
}
.section {
  background-color: #f5f5f7;
  /* background-color: #000000; */
  padding: 90px 0;
  position: relative;
}
.section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  border-top: 120px solid #000000;
  border-right: 200px solid transparent;
}
.section::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  border-bottom: 120px solid #000000;
  border-left: 200px solid transparent;
}
.section .row {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.section .col {
  width: 50%;
}
.section .heading {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 20px;
}
.section h1 {
  font-size: 54px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 48px;
}
.section .text {
  line-height: 1.8;
}
/* section2 */
.section2 {
  padding: 0px 0;
  background-color: #f5f5f7;
}
.section2 .container {
  width: 90%;
  max-width: 1040px;
  margin: 0 auto;
}
.section2 .row {
  display: flex;
  justify-content: space-between;
  max-width: 900px;
  margin: 0 auto 2px;
  padding: 30px 60px;
  background-color: #ffffff;
  border-end-end-radius: 80px 80px;
  /* border: solid 0.5px #d0cdcd; */
}
.section2 .col:first-child {
  width: 30%;
}
.section2 .title {
  font-size: 0.85rem;
  /* font-weight: 700; */
  color: #000000;
  margin: 5px 0px 0 10px;
}
.section2 .col:last-child {
  width: 70%;
  padding-left: 20px;
}
.section2 h3 {
  font-size: 24px;
  font-weight: 700;
  color: #3f88c9;
  margin-bottom: 16px;
}
.section2 .text {
  line-height: 1.6;
}
.footer {
  background-color: #000000;
  color: #ffffff;
  padding: 10px 0;
  font-size: 14px;
  min-height: 20px;
  text-align: center;
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;

  /* display: flex;
  align-items: center;
  justify-content: center;
  margin-top: auto; */
}
/* .h-100 {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
} */

@media screen and (max-width: 1200px) {
  .section h1 {
    font-size: 40px;
    margin-bottom: 36px;
  }
}
@media screen and (max-width: 767px) {
  .section {
    padding: 80px 0 30px;
  }
  .section::before {
    border-top: 60px solid #000000;
    border-right: 160px solid transparent;
  }
  .section::after {
    border-bottom: 60px solid #000000;
    border-left: 160px solid transparent;
  }
  .section .heading {
    font-size: 18px;
    margin-bottom: 16px;
  }
  .section h1 {
    font-size: 28px;
    margin-bottom: 24px;
  }
  .section .row {
    flex-direction: column;
    /* flex-wrap: wrap; */
    /* gap: 20px; */
  }
  .section .col {
    width: 100%;
    margin-bottom: 50px;
  }
  /* section2 */
  .section2 .container {
    width: 100%;
  }
  .section2 .row {
    /* flex-wrap: wrap; */
    /* gap: 24px 0; */
    margin-bottom: 10px;
    padding: 14px 10px;
    height: 152px;
  }
  .section2 .col:first-child {
    width: 100%;
    /* text-align: center; */
    /* margin: auto 0; */
    padding: 5px;
  }
  .section2 .col:last-child {
    width: 100%;
    padding: 2px;
  }
  .section2 img {
    max-width: 150px;
  }
  .section2 h3 {
    font-size: 0.7rem;
    margin-bottom: 2px;
    /* text-align: center; */
  }
  .section2 .text {
    font-size: 0.6rem;
  }
}
