body {
  padding: 0;
  margin: 0;
}
body > * {
  padding-inline: 7%;
  display: flex;
}

@media only screen and (max-width: 1000px) {
  body > * {
    padding-inline: 4.6%;
    display: flex;
  }
}

/*  */
/* /////////////////////////// Header //////////// */

.header {
  display: flex;
  padding-block: 24px;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(
    180deg,
    #d9d9d9 0%,
    rgba(255, 255, 255, 0.2) 133.98%
  );

  backdrop-filter: blur(11px);
}

.uml_icon {
  width: 245.405px;
  height: 80px;
  flex-shrink: 0;
}

.header_links {
  gap: 20px;
  display: flex;
  color: #6a6a6a;
  font-family: Montserrat;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-transform: capitalize;
}

/* ////////////////////// FOOTER ///////////////////////// */
.footer {
  padding-block: 60px 24px;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  background: #e0e0df;
}
.footer_content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  align-self: stretch;
}
.footer_links {
  color: #6a6a6a;
  font-family: Montserrat;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-transform: capitalize;
  display: flex;
  gap: 20px;
}
.footer_line {
  background: #bf0a2f;
  height: 1px;
  width: 100%;
  border: none;
}
.footer_rights_reserved {
  color: #012767;
  font-family: Montserrat;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  height: 40px;
}

/* ///////////////////////////////////////////////   MOBILE VERSION   ////////////////////////////////////////// */

@media only screen and (max-width: 1000px) {
  .header {
    padding-block: 16px;
  }
  .footer_links {
    flex-direction: column;
    align-items: center;
    font-size: 12px;
    text-align: end;
    gap: 4px;
  }
  .uml_icon {
    width: 160px;
    height: 52.159px;
    flex-shrink: 0;
  }
  .footer {
    gap: 20px;
    padding-block: 20px;
  }
}
