@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
main, menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, main, menu, nav, section {
  display: block;
}

/* HTML5 hidden-attribute fix for newer browsers */
*[hidden] {
  display: none;
}

body {
  line-height: 1;
}

menu, ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

a {
  text-decoration: none;
}

html, body {
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6, p, a {
  font-family: "Poppins", sans-serif;
}

h1, h2, p, svg, a {
  color: white;
  fill: white;
}

.wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background: rgb(124, 15, 33);
}

.header {
  background: #f0f0f0;
}

.site-logo {
  width: 100vw;
  min-height: 300px;
  max-height: 31vw;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
}

.site-title {
  display: block;
  font-size: 32px;
  text-align: center;
  font-weight: bold;
}

.social-media-items {
  display: flex;
  margin: 20px 0;
  gap: 12px;
}
.social-media-items svg {
  width: 30px;
  height: 35px;
  transition: 0.2s;
}
.social-media-items svg:hover {
  transform: translateY(-5px);
}

.main-header-figure {
  content: "";
  position: absolute;
  width: 100vw;
  height: 100px;
  background: rgb(124, 15, 33);
  top: -99px;
  left: 0;
  -webkit-clip-path: polygon(100% 0, 55% 60%, 55% 0, 0 80%, 0 100%, 100% 100%);
          clip-path: polygon(100% 0, 55% 60%, 55% 0, 0 80%, 0 100%, 100% 100%);
}

.university-links-list {
  display: flex;
  margin-top: 35px;
  flex-direction: column;
  gap: 10px;
}

.university-link-item a {
  width: 80vw;
  height: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  position: relative;
  cursor: pointer;
  text-align: center;
  border-radius: 5px;
}
.university-link-item a img {
  width: 100%;
  height: 100%;
  position: absolute;
  border-radius: inherit;
  -o-object-fit: cover;
     object-fit: cover;
}
.university-link-item a h2 {
  line-height: normal;
  font-weight: 700;
  letter-spacing: -0.012em;
}
.university-link-item a:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 5;
  border-radius: inherit;
  background: rgba(0, 0, 0, 0.5);
  transition: 0.2s;
}
.university-link-item a .link-item-info {
  padding: 0 24px;
}
.university-link-item a .link-item-info, .university-link-item a h2 {
  z-index: 15;
  font-size: 21px;
}
.university-link-item a .link-item-info p {
  margin-top: 5px;
  font-size: 12px;
  line-height: normal;
}
.university-link-item a:hover:before {
  background: rgba(0, 0, 0, 0.6);
}

main {
  position: relative;
  width: 100%;
  background: rgb(124, 15, 33);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
main:before {
  content: "";
  position: absolute;
  top: -130px;
  width: 100%;
  height: 100px;
}

.social-media-items {
  display: flex;
  justify-content: center;
  align-items: center;
}

footer {
  padding-bottom: 40px;
  margin-top: 50px;
}
footer:hover img {
  transform: rotateY(180deg);
}
footer img {
  opacity: 1;
  width: 50px;
  height: 50px;
  perspective: 50px;
  transition: 0.7s;
  cursor: pointer;
}

.main_content {
  z-index: 10;
  margin-top: -20px;
}

@media screen and (max-width: 1280px) {
  .main-header-figure {
    -webkit-clip-path: polygon(100% 0, 55% 40%, 55% 0, 0 60%, 0 100%, 100% 100%);
            clip-path: polygon(100% 0, 55% 40%, 55% 0, 0 60%, 0 100%, 100% 100%);
  }
  .university-links-list {
    gap: 15px;
  }
}
@media screen and (max-width: 1200px) {
  .site-logo {
    max-height: 33vw;
  }
}
@media screen and (max-width: 980px) {
  .university-link-item a {
    height: 300px;
  }
  .university-link-item a {
    width: 90vw;
  }
}
@media screen and (max-width: 500px) {
  .university-link-item a h2 {
    font-size: 16px;
  }
  main .site-logo-container:before {
    height: 160px;
  }
  .main-header-figure {
    -webkit-clip-path: polygon(100% 0, 55% 23%, 55% 0, 0 33%, 0 100%, 100% 100%);
            clip-path: polygon(100% 0, 55% 23%, 55% 0, 0 33%, 0 100%, 100% 100%);
  }
  .main_content {
    margin-top: -38px;
  }
  .link-item-info, h2 {
    z-index: 15;
    font-size: 18px;
  }
  .university-link-item a {
    height: 200px;
  }
}
.university-links-list li:nth-child(01) img {
  -o-object-position: 50% 0%;
     object-position: 50% 0%;
}

.university-links-list li:nth-child(02) img {
  -o-object-position: 50% 5%;
     object-position: 50% 5%;
}

.university-links-list li:nth-child(03) img {
  -o-object-position: 50% 20%;
     object-position: 50% 20%;
}

.university-links-list li:nth-child(04) img {
  -o-object-position: 50% 100%;
     object-position: 50% 100%;
}/*# sourceMappingURL=style.css.map */