@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600&display=swap");
:root {
  --blue:#0284c7;
  --green:#008000;
  --black:#101820;
  --white:#fff;
  --light-color:#666;
  --light-bg:#f1f5f9;
  --dark-bg:#1f2937;
  --box-shadow:0 .5rem 1rem rgba(0,0,0,.1);
  --border:.1rem solid rgba(0,0,0,.3);
}

* {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  outline: none;
  border: none;
  text-decoration: none;
}

html {
  font-size: 62.5%;
  overflow-x: hidden;
  scroll-behavior: smooth;
  scroll-padding-top: 7rem;
}

html::-webkit-scrollbar {
  width: 1rem;
}

html::-webkit-scrollbar-track {
  background: transparent;
}

html::-webkit-scrollbar-thumb {
  background-image: linear-gradient(to bottom, #e2e8f0, #e7ebf2, #eceef4, #f1f2f5, #f5f5f7, #f6f6f8, #f7f8f9, #f8f9fa, #f6f8fa, #f5f7fa, #f3f6f9, #f1f5f9);
}

section {
  padding: 5rem 10%;
}

.heading {
  margin-bottom: 3rem;
  font-size: 3rem;
  color: var(--black);
  text-transform: none;
  padding-left: 1rem;
}

.btn {
  display: inline-block;
  margin-top: 1rem;
  padding: 1.2rem 2rem;
  background: var(--blue);
  border-radius: 2.5rem;
  color: var(--white);
  cursor: pointer;
  font-size: 1.5rem;
  text-transform: capitalize;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}

.btn:hover {
  background-image: linear-gradient(to right top, #00b1dd, #00b1dd, #00b1dd, #00b1dd, #00b1dd);
}

@-webkit-keyframes fadeIn {
  0% {
    top: 50%;
    opacity: 0;
  }
}

@keyframes fadeIn {
  0% {
    top: 50%;
    opacity: 0;
  }
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  padding: 1rem 10%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  z-index: 1000;
  transition: 0.5s ease;
  }

  .header.active{
    background: var(--black);

  }

.header .logo {
  font-size: 2.5rem;
  color: var(--white);
  text-transform: capitalize;
  font-weight: 800;
  letter-spacing: 2px;
}

.header .logo span {
  color: var(--white);
}

.header .navbar a {
  font-size: 1.5rem;
  color: var(--blue);
  text-transform: capitalize;
  margin: 0 1rem;
  font-weight: 500;
}

.header .navbar a:hover {
  color: var(--blue);
}

.header .icons div {
  height: 3rem;
  width: 3rem;
  line-height: 3rem;
  font-size: 2rem;
  border-radius: 1rem;
  color: var(--white);
  cursor: pointer;
  text-align: center;
  margin-left: 1rem;

}

.header .icons div:hover {
  color: var(--blue);
}

.header #menu-btn {
  display: none;
}

.header .search-form {
  position: absolute;
  top: 120%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 70rem;
  background: var(--white);
  -webkit-box-shadow: var(--box-shadow);
          box-shadow: var(--box-shadow);
  padding: 1rem;
  display: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
  -webkit-animation: fadeIn .2s linear;
          animation: fadeIn .2s linear;
}

.header .search-form.active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.header .search-form input {
  width: 100%;
  padding: 1.2rem 1.4rem;
  background: var(--light-bg);
  font-size: 1.6rem;
  color: var(--light-color);
}

.header .search-form label {
  font-size: 2.5rem;
  color: var(--black);
  cursor: pointer;
  margin: 0 1rem;
}

.header .search-form label:hover {
  color: var(--blue);
}

.header .login-form {
  position: absolute;
  top: 120%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 40rem;
  background: var(--white);
  -webkit-box-shadow: var(--box-shadow);
          box-shadow: var(--box-shadow);
  padding: 2rem;
  text-align: center;
  -webkit-animation: fadeIn .2s linear;
          animation: fadeIn .2s linear;
  display: none;
}

.header .login-form.active {
  display: block;
}

.header .login-form h3 {
  font-size: 2.5rem;
  color: var(--black);
  text-transform: capitalize;
  padding-bottom: 1rem;
  text-transform: uppercase;
}

.header .login-form .box {
  width: 100%;
  padding: 1.2rem 1.4rem;
  background: var(--light-bg);
  font-size: 1.6rem;
  color: var(--light-color);
  margin: .7rem 0;
}

.header .login-form .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: .5rem;
  padding-top: 1.5rem;
  padding-bottom: 1rem;
}

.header .login-form .flex label {
  font-size: 1.5rem;
  color: var(--light-color);
  cursor: pointer;
}

.header .login-form .flex a {
  font-size: 1.5rem;
  color: var(--light-color);
  margin-left: auto;
}

.header .login-form .flex a:hover {
  color: var(--blue);
  text-decoration: underline;
}

.header .login-form .btn {
  width: 100%;
}

.header .login-form p {
  font-size: 1.5rem;
  color: var(--light-color);
  line-height: 2;
  padding-top: 1.5rem;
}

.header .login-form p a {
  color: var(--blue);
}

.header .login-form p a:hover {
  text-decoration: underline;
}

.contact-info {
  position: fixed;
  top: 0;
  right: 0;
  width: 35rem;
  background: var(--white);
  height: 100%;
  text-align: center;
  z-index: 1100;
  padding: 0 2rem;
  padding-top: 5rem;
  display: none;
}

.contact-info.active {
  -webkit-box-shadow: 0 0 0 100vw rgba(0, 0, 0, 0.7);
          box-shadow: 0 0 0 100vw rgba(0, 0, 0, 0.7);
  display: block;
}

.contact-info #close-contact-info {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  cursor: pointer;
  font-size: 4rem;
  color: var(--black);
}

.contact-info #close-contact-info:hover {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

.contact-info .info {
  padding: 2rem 0;
}

.contact-info .info i {
  height: 5rem;
  width: 5rem;
  border-radius: 1rem;
  line-height: 5rem;
  font-size: 2rem;
  background: var(--light-bg);
  color: var(--black);
  cursor: pointer;
  text-align: center;
  margin-bottom: .5rem;
}

.contact-info .info i:hover {
  background: var(--black);
  color: var(--white);
}

.contact-info .info h3 {
  font-size: 2rem;
  color: var(--black);
  text-transform: capitalize;
  padding: 1rem 0;
}

.contact-info .info p {
  font-size: 1.5rem;
  color: var(--light-color);
  line-height: 2;
}

.contact-info .share {
  padding-top: 2rem;
  border-top: var(--border);
  margin-top: 1rem;
}

.contact-info .share a {
  height: 5rem;
  width: 5rem;
  line-height: 5rem;
  font-size: 2rem;
  background: var(--light-bg);
  color: var(--black);
  cursor: pointer;
  text-align: center;
  margin: 0 .3rem;
  border-radius: 1rem;
}

.contact-info .share a:hover {
  background: var(--black);
  color: var(--white);
}

.header .media-icons {
  z-index: 2000;
  position: absolute;
  right: 30px;
  display: flex;
  flex-direction: column;
  transition: 0.5s ease;
  margin-top: 75rem;
  background: var(--light-bg);
  padding: 1rem 1rem;
  border-radius: 2rem;
  box-shadow: var(--box-shadow)
}

.header .media-icons a{
  color: var(--black);
  font-size: 3rem;
  transition: 0.3s ease;
}

.header .media-icons a:not(:last-child){
  margin-bottom: 20px;
}

.header .media-icons a:hover{
  transform: scale(1.4);
}

.home {
  padding: 0;
  margin: 0;
}

.home .slide {
  min-height: 75rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  background-size: cover !important;
  background-position: center !important;
}

.home .slide::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}

.home .slide .content {
  width: 100%;
  position: relative;
  text-align: left;
  padding-top: 35rem;
}

.home .slide .content h3 {
  font-size: 6rem;
  color: var(--white);
  text-transform: none;
  text-shadow: 1px 1px var(--black);
  margin-bottom: 25rem;
}

.home .swiper-button-next{
  right: 2rem;;
  height: 3rem;
  width: 3rem;
  line-height: 5rem;
  background: var(--light-bg);
  border-radius: 2rem;
}
.home .swiper-button-prev {
  left: 2rem;
  height: 3rem;
  width: 3rem;
  line-height: 5rem;
  background: var(--light-bg);
  border-radius: 2rem;
}

.home .swiper-button-next::after,
.home .swiper-button-prev::after {
  font-size: 1.5rem;
  color: var(--black);
}

.profile {
  background: var(--black);
}

.profile .box-container {
  margin-top: 4rem;
  display: grid;
  text-align: center;
  padding-bottom: 25rem;
}

.profile .box-container .box {
  text-align: center;
}

.profile .box-container .box h5 {
  font-size: 5rem;
  color: var(--white);
  text-transform: none;
}

.profile .box-container .box h4 {
  font-size: 5rem;
  color: var(--white);
  text-transform: none;
}

.profile .box-container .box a {
  display: inline-block;
  margin-top: 1rem;
  padding: 1.2rem 2rem;
  background: var(--light-bg);
  border-radius: 2.5rem;
  color: var(--black);
  cursor: pointer;
  font-size: 1.5rem;
  text-transform: capitalize;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}

.profile .box-container .box a:hover {
  background: #e5e7eb;
}

.fitur {
  background: var(--white);
  border-top-left-radius: 7rem;
  border-top-right-radius: 7rem;
  padding-bottom: 0;
  margin-top: -10rem;
}

.fitur .box-container {
  width: 70%;
  margin: -20rem auto auto;
  display: -ms-grid;
  display: grid;
  z-index: 500;
  -ms-grid-columns: (minmax(16rem, 1fr))[auto-fit];
      grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
  gap: 2rem;
}

.fitur .box-container .box {
  text-align: center;
  padding: 0;
  justify-content: center;

}

.fitur .box-container .box img {
  height: 25rem;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}

.fitur .box-container .box h2 {
  font-size: 1.7rem;
  color: var(--black);
  text-transform: none;
}

.fitur .box-container .box p {
  font-size: 1.5rem;
  color: var(--light-color);
  line-height: 2;
  padding: 1rem 0;
  text-align: center;
}

.fitur .box-container .box a {
  padding: 1rem 0;
  font-size: 1.4rem;
  color: var(--black);
  line-height: 2;
  font-weight: bold;
}

.fitur .box-container .box a:hover {
  text-decoration: underline;
  font-weight: bold;
}

.about {
  background: var(--white);
  margin-bottom: 5rem;
}

.about .heading {
  padding-top: 4rem;
  padding-bottom: 3rem;
  text-align: center;
}

.about h5 {
  font-size: 5rem;
  color: var(--black);
  text-transform: none;
}

.about .box-container {
  margin-top: 3rem;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(16rem, 1fr))[auto-fit];
      grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
  gap: 2rem;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.about .box-container .box {
  display: flex;
  text-align: center;
  padding: 1.5rem 2rem;
  border-radius: 2rem;
  background-color: var(--dark-bg);

}

.about .box-container .box .image img {
  height: 4rem;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}

.about .box-container .box .content {
  text-align: left;
  padding-left: 2.5rem;
}

.about .box-container .box .content h3 {
  font-size: 3rem;
  color: var(--white);
  text-transform: capitalize;
}

.about .box-container .box .content p {
  font-size: 1.3rem;
  color: var(--white);
  line-height: 2;
}

.about .row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 3rem;
  padding-top: 5rem;
}

.about .row .video {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 41rem;
          flex: 1 1 41rem;
}

.about .row .video video {
  width: 100%;
  border-radius: 2rem;
  border: var(--border);
  -webkit-box-shadow: var(--box-shadow);
          box-shadow: var(--box-shadow);
}

.about .row .content {
  text-align: center;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 41rem;
          flex: 1 1 41rem;
}

.about .row .content h3 {
  font-size: 3.5rem;
  color: var(--black);
  text-transform: none;
  text-align: center;
}

.about .row .content p {
  font-size: 1.5rem;
  color: var(--light-color);
  line-height: 2;
  padding: 1rem 0;
  text-align: center;
}

.headline {
  padding: 0;
  margin: 0;
}

.headline .image {
  height: 30rem;
  overflow: hidden;
}

.headline img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}

.content-berita {
  display: flex;
  flex-direction: row;
  gap: 10rem;
}

.content-berita .box-container {
  width: 70%
}

.content-berita .box-container .content {
  text-align: left;
  padding-bottom: 4rem;
}

.content-berita .box-container .content h3 {
  font-size: 2.5rem;
  color: var(--black);
  text-transform: none;
}

.content-berita .box-container .content p {
  font-size: 1.5rem;
  color: var(--black);
  text-transform: none;
}

.content-berita .box-container .icons{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 1.5rem;
  margin-bottom: 1rem;
}

.content-berita .box-container .icons a{
  color:var(--light-color);
  font-size: 1.5rem;
}

.content-berita .box-container .icons a:hover{
  color:var(--black);
}

.content-berita .box-container .icons a i{
  color:var(--light-color);
  padding-right: .5rem;
}

.content-berita .box-container .image {
  height: 40rem;
  overflow: hidden;
}

.content-berita .box-container .image img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: .2s linear;
  transition: .2s linear;
  border-radius: 2rem;
  border-radius: 2rem;
}

.content-berita .box-container .text {
  margin-top: 4rem;
}

.content-berita .box-container .text p {
  font-size: 1.5rem;
  color: var(--black);
  text-transform: none;
  padding-bottom: 2rem;
}

.content-berita .row {
  display: flex;
  flex-direction: column;
  width: 30%;
}

.content-berita .row h3 {
  font-size: 3.5rem;
  color: var(--black);
  text-transform: none;
  border-bottom: var(--border);
}

.content-berita .box h2 {
  color:var(--black);
  font-size: 1.3rem;
  padding-top: 3rem;
  padding-bottom: .5rem;
  cursor: pointer;
}

.content-berita .box h2:hover {
  color: var(--light-color);
}

.content-berita .box a {
  color:var(--light-color);
  font-size: 1rem;
}

.program {
  padding-bottom: 0;
  background: var(--black);
}

.program .row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 3rem;

}

.program .row .content {
  padding-left: 4rem;
  text-align: left;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 41rem;
          flex: 1 1 41rem;
}

.program .row .content h3 {
  font-size: 2.5rem;
  color: var(--white);
  text-transform: none;
  text-align: center;
}

.program .box-container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(25rem, 1fr))[auto-fit];
      grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
  gap: 2rem;
  padding-bottom: 20rem;
  margin-top: 4rem;
}

.program .box-container .box {
  text-align: center;
  padding: 3rem;
  -webkit-box-shadow: var(--box-shadow);
          box-shadow: var(--box-shadow);
  border: var(--border);
  border-radius: 3rem;
  background: var(--dark-bg);
}

.program .box-container .box:hover img {
  -webkit-transform: translateY(-1rem);
          transform: translateY(-1rem);
}

.program .box-container .box img {
  height: 7rem;
  margin-bottom: .5rem;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}

.program .box-container .box h3 {
  font-size: 1.7rem;
  color: var(--white);
  text-transform: none;
  padding: 2rem 0;
}

.program .box-container .box p {
  margin-top: -2rem;
  font-size: 1.4rem;
  color: var(--white);
  line-height: 2;
}

.program .box-container .box a{
  display: inline-block;
  margin-top: 2rem;
  padding: 0.5rem 2rem;
  border: var(--white);
  background: var(--blue);
  border-radius: 2.5rem;
  color: var(--white);
  cursor: pointer;
  font-size: 1.5rem;
  text-transform: none;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}

.services {
  background: var(--black);
}

.services .heading {
  text-align: center;
}

.services h5 {
  font-size: 3rem;
  color: var(--white);
  text-transform: none;
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.services .box-container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(25rem, 1fr))[auto-fit];
      grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
  gap: 2rem;
  padding-bottom: 10rem;
}

.services .box-container .box {
  text-align: center;
  padding: 3rem;
  -webkit-box-shadow: var(--box-shadow);
          box-shadow: var(--box-shadow);
  border: var(--border);
  border-radius: 3rem;
  background: var(--dark-bg);
  margin-bottom: 5rem;
}

.services .box-container .box:hover img {
  -webkit-transform: translateY(-1rem);
          transform: translateY(-1rem);
}

.services .box-container .box img {
  height: 7rem;
  margin-bottom: .5rem;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}

.services .box-container .box h3 {
  font-size: 1.7rem;
  color: var(--white);
  text-transform: none;
  padding: 2rem 0;
}

.services .box-container .box p {
  font-size: 1.4rem;
  color: var(--white);
  line-height: 2;
}


.berita {
  background: var(--white);
}

.berita .heading {
  text-align: left;
}

.berita h5 {
  font-size: 3rem;
  color: var(--black);
  text-transform: none;
  padding-top: 5rem;
  padding-bottom: 3rem;
}

.berita .box-container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(25rem, 1fr))[auto-fit];
      grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
  gap: 2rem;
  padding-bottom: 7rem;
}




.berita .box-container .box:hover .image img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.berita .box-container .box .image {
  height: 25rem;
  width: 100%;
  border-top-left-radius: 2rem;
  border-top-right-radius: 2rem;
  overflow: hidden;
  margin: 0 auto;
}

.berita .box-container .box .image img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
      object-fit: cover;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}

.berita .box-container .box .content {
  padding: 1rem 2rem;
  border-bottom-left-radius: 2rem;
  border-bottom-right-radius: 2rem;
  background: var(--light-bg);
}

.berita .box-container .box .content h3 {
  font-size: 1.8rem;
  color: var(--black);
  text-transform: none;
}

.berita .box-container .box .content p {
  font-size: 1.4rem;
  color: var(--light-color);
  text-transform: none;
  padding-bottom: 2rem;
}

.berita .box-container .box .content a {
  padding: 1rem 0;
  font-size: 1.4rem;
  color: var(--black);
  line-height: 2;
}

.berita .box-container .box .content a:hover {
  text-decoration: underline;
}


.daftar {
  background: var(--blue);
  border-radius: 8rem;
  border-radius: 8rem;
  margin-top: -10rem;
}

.daftar .row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 3rem;

}

.daftar .row .image {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 15rem;
          flex: 1 1 15rem;
}

.daftar .row .image img {
  width: 100%;
}

.daftar .row .content {
  padding-left: 4rem;
  text-align: left;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 41rem;
          flex: 1 1 41rem;
}

.daftar .row .content h3 {
  font-size: 3.5rem;
  color: var(--white);
  text-transform: none;
}

.daftar .row .content p {
  font-size: 1.5rem;
  color: var(--white);
  line-height: 2;
  padding-top: 2rem;
  padding-bottom: 1.5rem;
}

.daftar .row .content a {
  display: inline-block;
  margin-top: 1rem;
  padding: 1.2rem 2rem;
  background: var(--light-bg);
  border-radius: 2.5rem;
  color: var(--black);
  cursor: pointer;
  font-size: 1.5rem;
  text-transform: capitalize;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}

.daftar .row .content a:hover {
  background: #e5e7eb;
}

.campuslife {
  padding-bottom: 15rem;
  margin-bottom: -10rem;
}

.campuslife .heading {
  color: var(--black);
}

.campuslife .box-container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(30rem, 1fr))[auto-fit];
      grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
  gap: 2rem;
}

.campuslife .box-container .box {
  cursor: initial;
}

.campuslife .box-container .box:hover .image img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.campuslife .box-container .box .image {
  height: 40rem;
  overflow: hidden;
  border-top-left-radius: 2rem;
  border-top-right-radius: 2rem;
}

.campuslife .box-container .box .image img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: .2s linear;
  transition: .2s linear;
  border-top-left-radius: 2rem;
  border-top-right-radius: 2rem;
}

.campuslife .box-container .box .content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-bottom-left-radius: 2rem;
  border-bottom-right-radius: 2rem;
  background: var(--blue);
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.campuslife .box-container .box .content .info {
  padding: 1rem 2rem;
}

.campuslife .box-container .box .content .info h3 {
  font-size: 1.7rem;
  color: var(--white);
  text-transform: capitalize;
}

.campuslife .box-container .box .content .info p {
  font-size: 1.5rem;
  color: var(--white);
  line-height: 2;
}

.berita1 {
  background: var(--white);

height: 50vh;
}

.berita1 .heading {
  text-align: left;
}

.berita1 h5 {
  font-size: 3rem;
  color: var(--black);
  text-transform: none;
  padding-top: 5rem;
  padding-bottom: 3rem;
}

.berita1 .box-container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(25rem, 1fr))[auto-fit];
      grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
  gap: 2rem;
  padding-bottom: 7rem;
}



.berita1 .box-container .box:hover .image img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.berita1 .box-container .box .image {

  width: 100%;
  border-top-left-radius: 2rem;
  border-top-right-radius: 2rem;
  overflow: hidden;
  margin: 0 auto;
}

.berita1 .box-container .box .image img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
      object-fit: cover;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}

.berita1 .box-container .box .content {
  padding: 1rem 2rem;
  border-bottom-left-radius: 2rem;
  border-bottom-right-radius: 2rem;
  background: var(--light-bg);
}

.berita1 .box-container .box .content h3 {
  font-size: 1.8rem;
  color: var(--black);
  text-transform: none;
}

.berita1 .box-container .box .content p {
  font-size: 1.4rem;
  color: var(--light-color);
  text-transform: none;
  padding-bottom: 2rem;
}

.berita1 .box-container .box .content a {
  padding: 1rem 0;
  font-size: 1.4rem;
  color: var(--black);
  line-height: 2;
}

.berita1 .box-container .box .content a:hover {
  text-decoration: underline;
}


.news {
  background: var(--white);
padding-bottom: 0px !important;

margin-bottom: 0px !important;



height: 75vh;


}

.news .heading {
  color: var(--black);
}

.news .slide {
  text-align: left;
height: 40vh;


}

.news .slide:hover .image img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}


.news .slide .image {
 height: 100%;
  width: 100%;
  border-top-left-radius: 2rem;
  border-top-right-radius: 2rem;
  overflow: hidden;
  margin: 0 auto;
}

.news .slide .image img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
      object-fit: cover;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}

.news .slide .content {
  padding: 1rem 2rem;
  border-bottom-left-radius: 2rem;
  border-bottom-right-radius: 2rem;
  background: var(--light-bg);
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.news .slide .content h3 {
  font-size: 1.8rem;
  color: var(--black);
  text-transform: none;
}

.news .slide .content p {
  font-size: 1.4rem;
  color: var(--light-color);
  text-transform: none;
}

.news .slide .content a {
  padding: 1rem 0;
  font-size: 1.4rem;
  color: var(--black);
  line-height: 2;
}

.news .slide .content a:hover {
  text-decoration: underline;
}

.event {

background: var(--white);
padding-top:0px !important;
margin-top:0px !important;

padding-bottom: 0px !important;
margin-bottom: 0px !important;


height: 75vh;

}

.event .heading {
  color: var(--black);
}

.event .slide {
  text-align: left;
height: 40vh;
}

.event .slide:hover .image img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.event .slide .image {
  width: 100%;
  border-top-left-radius: 2rem;
  border-top-right-radius: 2rem;
  overflow: hidden;
  margin: 0 auto;
}

.event .slide .image img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
      object-fit: cover;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}

.event .slide .content {
  padding: 1rem 2rem;
  border-bottom-left-radius: 2rem;
  border-bottom-right-radius: 2rem;
  background: var(--light-bg);
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.event .slide .content h3 {
  font-size: 1.6rem;
  color: var(--black);
  text-transform: none;
}

.event .slide .content a {
  padding: 1rem 0;
  font-size: 1.4rem;
  color: var(--black);
  line-height: 2;
}

.event .slide .content a:hover {
  text-decoration: underline;
}


.reviews {
padding-top:0px !important;
margin-top:0px !important;
height: 50vh;
}

.event .slide {
  text-align: left;
height: 40vh;
}


.reviews .heading {
  color: var(--black);
}

.reviews .slide p {
  padding: 1.5rem;
  background: var(--light-bg);
  position: relative;
  margin-bottom: 3rem;
  font-size: 1.4rem;
  color: var(--black);
  line-height: 2;
  border-radius: 1rem;
}

.reviews .slide p::before {
  content: '';
  position: absolute;
  bottom: -1rem;
  left: 2rem;
  height: 2rem;
  width: 2rem;
  background: var(--light-bg);
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.reviews .slide .user {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.5rem;
}

.reviews .slide .user img {
  height: 7rem;
  width: 7rem;
  border-radius: 1rem;
}

.reviews .slide .user h3 {
  font-size: 2rem;
  color: var(--black);
  text-transform: capitalize;
}

.reviews .slide .user .stars {
  padding-top: .5rem;
}

.reviews .slide .user .stars i {
  font-size: 1.4rem;
  color: var(--blue);
}

.logo-container {
  text-align: center;
padding-top: 0 !important;


height: 40vh;
}

.logo-container h3 {
  font-size: 2rem;
  color: var(--black);
  text-transform: none;
  margin-bottom: 3rem;
}

.logo-container img {
  height: 8rem;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.footer {
  background: var(--black);
}

.footer .box-container{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
  gap:1.5rem;
}

.footer .box-container .box h3{
  padding:.5rem 0;
  font-size: 2.5rem;
  color:var(--white);
}

.footer .box-container .share h3{
  padding:.5rem 0;
  font-size: 2.5rem;
  color:var(--white);
}

.footer .box-container .box a{
  display: block;
  padding:.5rem 0;
  font-size: 1.5rem;
  color:var(--white);
}

.footer .box-container .box a:hover {
  text-decoration: underline;
}

.footer .box-container .share a{
  height: 5rem;
  width: 5rem;
  line-height: 5rem;
  font-size: 2rem;
  background: var(--light-bg);
  color: var(--black);
  cursor: pointer;
  text-align: center;
  margin: 0 .3rem;
  border-radius: 1rem;
}

.footer .box-container .share a:hover{
  background: var(--blue);
  color: var(--light-bg)
}

.footer .credit{
  text-align: left;
  border-top: .1rem solid rgba(0,0,0,.1);
  font-size: 1.5rem;
  color:var(--white);
  padding:.5rem;
  padding-top: 1.5rem;
  margin-top: 1.5rem;
}

.footer .credit span{
  color:var(--white);
}

@media (max-width: 1200px) {
  .header {
    padding: 1.5rem 2rem;
  }
  section {
    padding: 3rem 5%;
  }
}

@media (max-width: 991px) {
  html {
    font-size: 55%;
  }
  section {
    padding: 3rem 2rem;
  }
  .header #menu-btn {
    display: inline-block;
  }
  .header .navbar {
    position: absolute;
    top: 99%;
    left: 0;
    right: 0;
    background: #1e293b;
    border-top: var(--border);
    border-bottom: var(--border);
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
            clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    -webkit-transition: .2s linear;
    transition: .2s linear;
  }
  .header .navbar.active {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
            clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
  .header .navbar a {
    display: block;
    margin: 2rem;
  }
}

@media (max-width: 768px) {
  .header .search-form {
    width: 90%;
  }

  .header .login-form {
    width: 90%;
  }
  .home .slide {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .home .slide .content {
    text-align: center;
  }
  .home .slide .content h3 {
    font-size: 3rem;
  }
}

@media (max-width: 450px) {
  html {
    font-size: 50%;
  }

  .home .slide .content h3 {
    font-size: 3rem;
  }

  .content-berita {
    display: grid;
  }

  .content-berita .box-container .image {
    height: 20rem;
    overflow: hidden;
  }

  .content-berita .box-container {
    width: 100%
  }

  .content-berita .row {
    display: flex;
    width: 70%;
  }

  .about .row .content h3 {
    font-size: 2.5rem;
  }

  .profile .box-container .box h5 {
    font-size: 3rem;
  }

  .profile .box-container .box h4 {
    font-size: 3rem;
  }

  .preview .row .content {
    text-align: center;
    padding-left: 0;
  }

  .dropdown {
      position: relative;
      display: inline-block;
  }

  .dropdown-content {
      display: none;
      position: absolute;
      background-color: #f9f9f9;
      min-width: 160px;
      box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
      padding: 12px 16px;
      z-index: 1;
  }

  .dropdown:hover .dropdown-content {
      display: block;
  }
}
/*# sourceMappingURL=style.css.map */
