:root {
  --body-color: #d5ddf8;
  --color-white: #fff;
  --color-black: #000;
  --text-color: #001b4c;
  --fire-color: #3f33bb;
  --border-card: rgba(170, 170, 170, 1);
  --color-new-black: rgba(68, 68, 68, 1);
}

:root {
  --roboto: font-family: "Roboto", serif;
  --normal: 400;
}

#privacy_banner {
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 300px;
  background-position: center;
  position: relative;
}

#privacy_banner .title {
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: auto;

}

#privacy_banner .title h1 {
  color: var(--color-white);
  font-size: 74px;
  font-weight: 700;

}

#privacy_policy_info p {
  font-size: 16px;
  color: var(--text-color);
  margin-top: 0px;
}


#privacy_policy_info .info_text {
  margin-top: 20px;
  margin-bottom: 20px;
}

#privacy_policy_info .info_text h5 {
  color: var(--text-color);
  font-size: 35px;
}

/* responsive */
@media(max-width:991px) {

  #privacy_banner .title h1 {
    font-size: 55px;
  }
}

@media(max-width:768px) {

  #privacy_banner .title h1 {

    font-size: 40px;
  }

  #privacy_banner {
    height: 200px;
  }
}
@media(max-width:575px) {
  #privacy_banner {
    height: 140px;
  }

  #privacy_banner .title h1 {

    font-size: 40px;
    line-height: 45px;
  }

  #privacy_policy_info .info_text h5 {
    font-size: 26px;
  }
}