* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: 0;
}
a {
  text-decoration: none;
}
body {
  font-family: "Poppins", sans-serif;
  font-size: 0.8rem;
  background: rgb(35, 50, 133);
  background: -moz-linear-gradient(
    0deg,
    rgba(35, 50, 133, 1) 0%,
    rgba(60, 82, 205, 1) 100%
  );
  background: -webkit-linear-gradient(
    0deg,
    rgba(35, 50, 133, 1) 0%,
    rgba(60, 82, 205, 1) 100%
  );
  background: linear-gradient(
    0deg,
    rgba(35, 50, 133, 1) 0%,
    rgba(60, 82, 205, 1) 100%
  );
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#233285", endColorstr="#3c52cd", GradientType=1);
  color: #232425;
  line-height: 1.5;
  min-height: 100vh;
}
section {
    padding: 2rem 0;
    border-bottom: 1px dashed #999;
}
section:first-child {
    padding-top: 0;
}
section:last-child {
    padding-bottom: 0;
    border-bottom: 0px dashed transparent;
}
.container {
  max-width: 1091px;
  padding: 2rem 1rem;
  margin: 0 auto;
}
p {
  margin-bottom: 0.8rem;
  text-align: justify;
}
p:last-child {
  margin-bottom: 0;
}
h1 {
  font-size: 1.4rem;
  margin-bottom: 0.4rem;
}
h4 {
  font-size: 1.1rem;
  margin-bottom: 0.9rem;
  font-weight: 400;
}
.card {
  background: #fff;
  padding: 2rem 50px;
  position: relative;
}
header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.logo {
  width: 300px;
  max-width: 100%;
  margin: 0 auto;
}
.drrlogo {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.drrlogo img {
  width: 100px;
}
.text-center {
  text-align: center;
}
table {
  min-width: 250px;
  margin-bottom: 1rem;
}
.table-responsive {
  width: 100%;
  overflow-x: auto;
}
table.table td,
table.table th {
  padding: 0.5rem 1rem;
}
th {
  text-align: left;
}
td {
  font-size: 0.8rem;
}
tr td:last-child {
  text-align: right;
}
table.table tr td:last-child {
  text-align: left;
}
h5,
b {
  font-size: 0.9rem;
}
h5 {
  margin-bottom: 0.2rem;
}
ul {
  padding-left: 1rem;
  margin-bottom: 0.5rem;
}
ul li {
  margin-bottom: 0.3rem;
  list-style: disc;
}
.bottom_sec {
  padding-top: 50px;
}
.bottom_sec img {
  width: 100px;
}
.bottom_sec ul {
  padding-left: 0;
  display: flex;
  gap: 50px;
}
.bottom_sec ul li{
  list-style: none;
}

.disclaimer{
      position: absolute;
    transform: rotate(-90deg);
    right: -132px;
    top: 50%;
}
.disclaimer p {
  font-size: 0.5rem;
  font-weight: 700;
}
.ref {
  padding-top: 30px;
}
.ref p{
  margin-bottom: 0;
}
.ref ol {
  padding-left: 10px;
}
.ref ol li {
  font-weight: 700;
  font-size: 0.6rem;
}
@media only screen and (max-width: 767px) {
  body {
    font-size: 0.8rem;
    line-height: 1.4;
  }
  .container {
    padding: 0.5rem;
  }
  h1 {
    font-size: 1.2rem;
    margin-bottom: 0.4rem;
  }

  .card {
    background: #fff;
    padding: 1rem 30px 1rem 15px;
    position: relative;
}

  .bottom_sec ul {
    display: flex;
    gap: 0px;
    flex-direction: column;
}

.disclaimer{
    right: -143px;
}

.bottom_sec img {
    width: 100px;
    padding-bottom: 5px;
}

.ref {
    padding-top: 10px;
}

.bottom_sec {
    padding-top: 20px;
}
}
