html, body {
  height: 100%;
  font-family: 'Poppins', sans-serif;
}

body {
  display: flex;
  flex-direction: column;
}

main {
  flex: 1 0 auto;
}

footer {
  flex-shrink: 0;
}

p {
  color: #212529;
  letter-spacing: 0.001em;
  font-weight: 300;
}

.font-weight-bolder {
  font-weight: 900;
}

h1 {
  font-size: 50px;
}

.fs-20 {
  font-size: 20px;
}

.fs-16 {
  font-size: 16px;
}

.fs-14 {
  font-size: 14px;
}

.fs-12 {
  font-size: 12px;
}

.strong {
  font-weight: 600;
}

.btn-large {
  min-width: 400px;
  min-height: 64px;
  border-radius: 32px;
  font-size: 24px;
  padding: 1rem .75rem;
}

.bg-green {
  background-color: #1AB14C;
}

.text-green {
  color: #1AB14C;
}

.btn-green {
  background-color: #1AB14C;
  color: #fff;
}

.border-green {
  border: 1px solid #1AB14C;
  border-radius: 8px;
}

.contract {
  width: 600px;
}

.contract h4 {
  line-height: 1.4;
}

.contact-icon {
  vertical-align: top;
}

.insurer-logo {
  max-width: 100px;
  max-height: 20px;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: left;
  object-position: left;
}

@media only screen and (max-width : 768px) {
  h1 {
    font-size: 32px;
  }
  
  .fs-20 {
    font-size: 18px;
  }

  .btn-large {
    min-width: 250px;
    min-height: 40px;
    border-radius: 24px;
    font-size: 18px;
    padding: .375rem .75rem;
  }

  .insurer-logo {
    max-width: 100%;
  }
  
  .contract {
    width: auto;
  }

  .contract-date {
    direction: rtl;
  }
}