@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;700&display=swap");
@font-face {
  font-family: "PlayfairDisplay";
  src: url("fonts/PlayfairDisplay-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "PlayfairDisplay";
  src: url("fonts/PlayfairDisplay-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "PlayfairDisplay";
  src: url("fonts/PlayfairDisplay-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "PlayfairDisplay";
  src: url("fonts/PlayfairDisplay-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
:root {
  --transition: all 0.2s;
  --button-translate: translateY(-3px);
  --background-color: #edf5f9;
}
body {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom;
  background-attachment: fixed;
  background-color: var(--background-color);
  font-family: "Roboto", sans-serif;
  -webkit-font-smoothing: antialiased;
  margin: 0;
  color: #000;
}
a {
  text-decoration: none;
  color: inherit;
}
.wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  height: calc(100% - 208px);
}
.header {
  background-color: #fff;
  padding: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  max-width: 150px;
}
.logo img {
  width: 100%;
}
.header-links {
  font-size: 17px;
}
.header-links-top {
  margin-right: 15px;
  display: flex;
  align-items: center;
}
.header-links-top a {
  padding: 6px 25px;
  display: inline-block;
  transition: all 0.2s;
}
.header-links-top a:hover {
  transform: translateY(-3px);
}
.header-links-top .icon {
  padding: 0 10px;
}
.header-links-top img {
  max-height: 18px;
  padding: 0;
}
.header- #search {
  height: 35px;
  border: 1px solid #ced4da;
  display: inline-block;
  padding: 0;
  vertical-align: top;
  padding-left: 5px;
}
#homeContainer .top {
  background-image: url("imgs/students-in-class-crop.jpg ");
  background-size: cover;
  height: calc(100% - 95px);
  max-height: 800px;
  max-width: none;
  width: auto;
  text-align: left;
  display: block;
}
.title {
  font-family: "PlayfairDisplay", serif;
  font-size: 3vw;
  font-weight: 600;
  padding: 40px 15px 15px 100px;
  line-height: 1.1;
}
.cards-container {
  display: flex;
  justify-content: center;
  gap: 100px;
  padding: 100px;
}
.card {
  display: flex;
  align-items: center;
  transition: var(--transition);
}
.card:hover {
  transform: var(--button-translate);
}
.card img {
  width: 100%;
}

.card-copy {
  padding: 25px;
  background: #fff;
  max-width: 80%;
  width: auto;
  min-height: 110px;
  position: relative;
  top: -60px;
}
.cards-container .card .title {
  font-size: 36px;
  padding: 0 0 8px;
  line-height: 1;
}
#homeContainer .sub-title {
  font-size: 24px;
}
.login .header {
  display: none;
}
#loginWrapper {
  background-image: url(imgs/campus.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  height: 100%;
}
.login-container {
  background-color: #fff;
  padding: 30px;
  border-radius: 9px;
  max-width: 400px;
  width: 100%;
  text-align: center;
}
.login-container .title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: "PlayfairDisplay";
  margin-bottom: 40px;
  padding: 0;
}
.login-container .title h1 {
  margin: 0;
  font-size: 40px;
}
.login-container .title img {
  height: 50px;
}
.login-inputs-container {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 40px;
}
:focus-visible {
  outline-color: rgba(0, 0, 0, 0.3);
}
.login-inputs-container input {
  font-family: inherit;
  height: 48px;
  font-size: 16px;
  border: 1px solid #ced4da;
  background-color: #dde1d9;
  border-radius: 35px;
  text-align: left;
  padding: 0 20px;
}
button {
  font-family: inherit;
  font-weight: 700;
  background-color: #000;
  border: none;
  height: 48px;
  color: #fff;
  cursor: pointer;
  transition: var(--transition);
  border-radius: 35px;
  font-size: 18px;
  padding: 0 60px;
}
button:hover {
  transform: translateY(-3px);
}

.login-container p a {
  text-decoration: underline;
  color: #000;
  font-size: 12px;
}
#linksWrapper {
}
.links-container .title {
  padding-bottom: 40px;
}

.links-container .cards-container {
  padding-top: 0;
}
.links-container .card-copy .title::after {
  content: url("imgs/arrow-right.svg");
  display: inline-block;
  width: 36px;
  position: relative;
  top: 8px;
}
.housing {
  /* background-color: #fff; */
}
#housingWrapper {
  display: flex;

  font-size: 20px;
  height: calc(100% - 94px);
}
.info-container {
  background-color: #fff;
}
.info-container,
.img {
  flex: 1 1 0;
  width: 0;
}
.info {
  max-width: 75%;
  margin: 0 auto;
}
#housingWrapper .title {
  padding: 40px 0 15px 0;
}
.img {
  background-image: url(imgs/orange-chair.jpg);
  background-size: cover;
  background-position: center;
}
#housingWrapper .info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
#housingWrapper .button-container {
  margin: 0;
}
.info p {
  line-height: 1.5;
}
.info ul {
  margin: 50px 0;
  padding-left: 21px;
}
.info li {
  line-height: 1.5;
}
#registrationWrapper img {
  width: 100%;
}
.button-container {
  margin: 40px auto 10px;
}
.registration {
  background-color: #fff;
}
#registrationWrapper {
  display: flex;
  font-size: 20px;
  height: calc(100% - 95px);
}
#registrationWrapper .title {
  padding: 0;
}
#registrationWrapper .info {
  max-width: 80%;
}
#registrationWrapper button {
  margin-bottom: 50px;
}
#registrationWrapper .img {
  background-image: url(imgs/studens-outdoor-chatting_crop.jpg);
  background-size: cover;
  background-position: left;
  /* background: none; */
}
@media screen and (max-width: 1361px) {
  .title {
    font-size: 42px;
  }
}
@media screen and (max-width: 1014px) {
  .header {
    flex-direction: column;
    gap: 15px;
  }
  .header-links-bottom {
    text-align: left;
  }
}
@media screen and (max-width: 786px) {
  .header-links {
    font-size: 16px;
  }
}
