:root { 
  --font-default: 'Poppins', sans-serif;
  --font-primary:  'Poppins', sans-serif;
  --font-secondary: 'Poppins', sans-serif;
}
/* Colors */
:root {
  --color-default: rgb(0, 0, 0);
  --gold:#b2a06f;
  --black:#454547;
}
/*--------------------------------------------------------------
# Basic
--------------------------------------------------------------*/
html ,body {
   font-family: var(--font-default);
   color: var(--black);
}
h1,p{
  margin: 0;
}

.bg-t{
  font-size: 45px;
}
.md-t{
  font-size: 28px;
}
.w-400{
  font-weight: 400;
}
.w-600{
  font-weight: 600;
}
.w-900{
  font-weight: 900;
}
.gold{
  color: var(--gold);
}
.upper{
  text-transform: uppercase;
}
.title-info{
  font-size: 17px;
  font-weight: 300;
}
.desc-info{
  font-size: 20px;
  font-weight: 900;
}
/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
.card {
  width: 100%;
  border: 2px solid var(--black);
  margin: 50px auto;
  padding: 55px;
  position: relative;
}
.card__header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.logo-pass img {
  width: 180px;
  height: auto;
}
.card__row {
  display: flex;
  flex-direction: row;
  /* justify-content: space-between; */
  align-items: flex-start;
  margin: 15px auto;
}
.card__col-25 {
  width: 33%;
}
.card__col-50 {
  width: 40%;
  /* margin-left: 55px; */
}
.profile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.profile {
  width: 350px;
  height: 450px;
  overflow: hidden;
}
.info {
  margin-bottom: 30px;
}
.desc {
  margin: 30px auto;
}
.title-header{
  text-align: center;
  width: 28%;
}
.num-pass {
  width: 24%;
}
.card__col-75 {
  width: 75%;
}
.card__footer {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  position: relative;
  justify-content: space-between;
}
.code-image{
  position: absolute;
  bottom: 0;
  right: 0;
  width: 180px;
  height: auto;
}
.color-footer{
  position: absolute;
  bottom: 0;
  left: 0;
  width: 70%;
}
.cover-t{

  background: #af9d6a66;
  padding-bottom: 130px;
}
.w-break{
  word-break: break-all;
}
.container {
  width: 1400px;
}
 
 
 
 