@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
a{
  text-decoration: none;
}
body {
  background: #fff;
  font-family: 'Helvitica', sans-serif;
  font-size: 20px;
  color: rgb(45, 45, 45);
  line-height: 1.5;
  font-weight: 500;
}
p{
  text-align: left;
  margin: 0 0 1rem;
}
.container {
  max-width: 900px;
  margin: auto;
  padding: 0 15px;
}
.logo {
  max-width: 200px;
  height: auto;
  width: 100%;
}
img {
  max-width: 100%;
  vertical-align: middle;
}
footer {
  margin: 30px 0 70px;
  padding: 10px;
  font-size: 12px;
  text-align: left;
  color: #8f8d9b;
}
.container-lg{
  max-width: 1200px;
}
.btn {
  border: 1px solid transparent;
  background-color: #5591c5;
  color: #fff;
  border-radius: 0;
  text-align: center;
  font-weight: 600;
  padding: 10px 20px;
}
.d-flex{
  display: flex;
}
.align-items-center{
  align-items: center;
}
.justify-content-bettween{
  justify-content: space-between;
}
.header {
  padding: 15px 0;
}
.main-section {
  padding: 30px 0;
}
h1.header-line{
  font-size: 30px;
}
.header-line {
  color: red;
  margin: 1rem 0;
}
.subheader {
  text-align: center;
  font-size: 16px;
  color: #000;
}
.left{
  text-align: left;
}
.row{
  margin-left: -15px;
  margin-right: -15px;
  display: flex;
  flex-wrap:wrap
}
.list_point{
  margin: 0;
  list-style: none;
  padding: 0;
  font-size: 22px;
}
.col-md-7 {
  max-width: 59%;
  padding: 0 15px;
  flex: 0 0 59%;
}
.col-md-5 {
  max-width: 41%;
  padding: 0 15px;
  flex: 0 0 41%;
}
h2.header-line{
  font-size: 25px;
}
.mt-0{
  margin-top: 0 !important;
}
.list_point li {
  display: block;
  padding-left: 25px;
  position: relative;
}

.list_point li:before {
  content: '\2713';
  position: absolute;
  left: 0;
  top: 0;
}

.list_point li+li {
  margin-top: 10px;
}
.mb-4{
  margin-bottom: 1.5rem !important;
}
.mt-4{
  margin-top: 1.5rem !important;
}
.justify-content-around{
  justify-content: space-around;
}
footer p {
  margin-bottom: 0.5rem;
}
.small_text{
  font-size: 85%;
  text-align: justify;
}
.cta {
  background: rgb(239, 242, 245);
  width: 100%;
  position: fixed;
  bottom: 0px;
  padding: 10px;
}
.button-cta {
  max-width: 860px;
  margin: auto;
}
.button-cta a {
  display: block;
  color: #FFFFFF;
  text-align: center;
  background-color: #5591c5;
  border-radius: 5px;
  padding: 5px;
  font-weight: 600;
  padding-top: 10px;
  padding-bottom: 10px;
}
.center{
  text-align: center;
}
@media(max-width:767px){
  .list_point,
  body{
    font-size: 15px;
  }
  .header{
    padding: 10px 0;
  }
  .logo{
    max-width: 130px;
  }
  .btn{
    padding: 6px 10px;
  }
  h1.header-line {
    font-size: 24px;
  }
  .subheader{
    font-size: 14px;
  }
  .col-md-5,
  .col-md-7{
    max-width: 100%;
    flex: 0 0 100%;
  }
  .list_point li+li{
    margin-top: 5px;
  }
  .list_point{
    margin-bottom: 1rem;
  }
  h2{
    font-size: 20px;
  }
  footer{
    margin: 0 0 55px;
  }
}