/************************************************/
/*               TABLE OF CONTENT               */
/************************************************/
/*
    1. Google Font
    2. Variable
    3. General styles
    4. Index Page
    5. Profil Page
    6. Berita Page
    7. Kalender Page
    8. Arsip Page
    9. Kontak Page
    10. Responsive / Media queries
*/

/*******************************************/
/*               GOOGLE FONT               */
/*******************************************/
@import url("https://fonts.googleapis.com/css2?family=Maven+Pro:wght@400;500;600;700&family=Oswald:wght@400;500;600;700&display=swap");

@import url("https://fonts.googleapis.com/css2?family=Raleway:wght@400;500;600;700&display=swap");

/****************************************/
/*               VARIABLE               */
/****************************************/
:root {
  /*height and width*/

  /*color*/
  --white: rgba(255, 255, 255, 1);
  --black: rgba(0, 0, 0, 1);
  --light: rgba(247, 247, 247, 1);
  --blight: rgb(227, 238, 237);
  --footer: rgba(245, 243, 238, 1);
  --orange: rgba(239, 132, 81, 1);
  --green1: rgba(61, 165, 99, 1);
  --green2: rgba(137, 176, 146, 1);
  --dark: rgba(16, 44, 47, 1);
  --dark2: rgba(1, 37, 36, 1);

  /* New colors recomendation */
  /* --white: rgba(255, 255, 255, 1);        
--black: rgba(20, 20, 20, 1);             
--light: rgba(250, 248, 247, 1);          
--blight: rgb(244, 230, 228);             
--footer: rgba(240, 235, 232, 1);         
--orange: rgba(207, 93, 68, 1);           
--green1: rgba(86, 138, 120, 1);          
--green2: rgba(182, 200, 193, 1);        
--dark: rgba(61, 20, 25, 1);             
--dark2: rgba(42, 10, 14, 1);            
--primary: rgba(122, 24, 22, 1);          */

  /*font and typography*/
  --reg-size: 16px;
  --medium-size: 18px;
  --big-size: 24px;
  /*--body-font: 'Maven Pro', sans-serif;*/
  --body-font: "Raleway", sans-serif;
  --head-font: "Oswald", sans-serif;
  /* font for title */
  --title-font: "Maitree", sans-serif;

  /*padding and margin*/
  --m-lg: 112px 0;
  --mb-lg: 112px;

  /*utility-radius*/
  --sm-rad: 3px;
  --md-rad: 6px;
  --lg-rad: 12px;
}

/*********************************************/
/*               GENERAL STYLE               */
/*********************************************/
* {
  font-family: var(--body-font);
  font-weight: 400;

  box-sizing: border-box;
  margin: 0;
  padding: 0;

  color: var(--black);
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

h1 {
  font-family: var(--head-font);
  font-size: 65px;
  font-weight: 400;
  line-height: 1.5;
}

h2 {
  font-family: var(--head-font);
  font-size: 48px;
}

h3 {
  font-size: 40px;
  font-weight: 700;

  margin-bottom: 18px !important;
}

h4 {
  font-size: 30px;
  font-weight: 700;
}

h5 {
  font-size: 18px;
  font-weight: 700;
}

h6 {
  font-size: 18px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--dark2);
}

/*title section*/
.title_section {
  max-width: 660px;
  margin: auto;
  padding-bottom: 30px;
}

.text-just {
  text-align: justify !important;
  text-justify: inter-word !important;
}

/* color main bold */
.text-dark2 {
  color: var(--dark2);
}

.text-green1 {
  color: var(--green1);
}

.text_light {
  color: var(--light) !important;
}

.lg-rad {
  border-radius: var(--lg-rad) !important;
}

.bg_dark {
  background-color: var(--dark);
}

/**********************/
/*     Navigation     */
/**********************/
/*navigations*/
.navbar {
  padding-right: 56px;
  padding-left: 56px;

  transition: all 0.6s ease-in-out;
}

.navbar.nav_pt_pb {
  padding-top: 0;
  padding-bottom: 0;
}

.navbar.navbar.nav_pt_pb .container-fluid {
  max-width: 90rem;
}

.navbar.bg-nav {
  background-color: var(--white);
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
}

/*right navigation mobile view*/
.right_navbar_toggler {
  display: flex;
}

.btn_search.mobile_view {
  display: none;

  margin-right: 30px;
}

.navbar-toggler {
  padding: 0 !important;

  border: none !important;
}

.fi-rs-menu-burger {
  font-size: 28px;

  display: flex;

  color: var(--black);
}

/*navbar list*/
.nav-link.nav_font {
  padding: 30px 0.8vw !important;

  transition: color 0.3s ease-in-out !important;
}

.nav-item .nav-link span {
  font-size: 14px;
  font-weight: 600;
}

.nav-item.dropdown .nav-link span {
  display: inline-block;
}

.navbar-light .navbar-nav .drop_menu .dropdown-item:hover,
.navbar-light .navbar-nav .drop_menu .dropdown-item.active {
  color: var(--green1) !important;
}

.nav-link span::after {
  display: block;

  width: 0;
  height: 2px;

  content: "";
  transition: width 0.3s ease-in-out;

  background: var(--green1);
}

.nav-link span:hover::after,
.navbar-light .navbar-nav .nav-link.active span::after {
  width: 100%;

  transition: width 0.4s;
}

.dropdown-toggle::after {
  display: none !important;
}

.icofont-simple-down {
  font-size: 16px;

  display: inline-block;

  transition: all 0.4s ease;
}

.drop_menu.dropdown-menu {
  top: 65px;

  margin-top: 0;

  border: none;
  border-radius: var(--md-rad);
  background-color: var(--white);
  box-shadow: 0 15px 25px 0 rgba(0, 0, 0, 0.1);
}

.drop_menu.dropdown-menu.down {
  top: 90px;
}

.drop_item.dropdown-item {
  font-size: 14px;
  font-weight: 600;

  padding: 6px 24px;

  transition: color 0.3s ease-in-out;

  color: #515151;
  background-color: transparent !important;
}

.btn_search {
  display: flex;

  margin-left: 36px;
  padding: 12px 18px;

  cursor: pointer;
  transition: all 0.3s;

  border-radius: var(--md-rad);
  background-color: var(--orange);

  align-items: center;
}

.btn_search:hover {
  background-color: rgba(234, 106, 46, 1);
}

.btn_caption {
  font-size: 14px;
  font-weight: 500;
  line-height: 16px;

  color: var(--white);
}

.icofont-search-1 {
  font-size: 14px;

  margin-right: 9px;

  color: var(--white);
}

/*****************/
/*    Footer     */
/*****************/
footer {
  background-color: var(--footer);
}

footer .container {
  display: flex;

  padding: 144px 0 72px;

  justify-content: space-between;
}

/*left footer*/
.left_footer {
  display: flex;

  flex: 45%;
}

.left_img img {
  height: 120px;
  margin-right: 24px;
}

.left_content {
  padding-right: 48px;
}

.left_content p {
  font-size: 14px;

  margin-bottom: 6px;
}

.left_content a {
  font-size: 18px;
  font-weight: 700;

  display: block;

  margin-bottom: 6px;

  color: var(--black);
}

/*right footer*/
.right_footer {
  display: flex;

  justify-content: flex-end;
  flex: 55%;
}

.quick_links,
.contact_us {
  padding-right: 48px;
}

.right_footer h5 {
  margin-bottom: 24px;

  color: var(--dark2);
}

.right_footer ul {
  padding-left: 0;
}

.right_footer ul li {
  font-size: 14px;

  padding-bottom: 6px;
}

.quick_links a {
  color: var(--black);
}

.contact_us li {
  cursor: pointer;
}

.contact_us a {
  color: var(--black);
}

.social_connect {
  width: 150px;
}

.social_connect ul li {
  float: left;

  margin-right: 12px;
  margin-bottom: 6px;
}

.social_connect ul li a i {
  font-size: 36px;
}

.left_footer a:hover,
.right_footer li:hover,
.right_footer a:hover,
.right_footer a:hover i {
  transition: all 0.3s ease;

  color: var(--green1);
}

/*bottom footer*/
.bottom_footer p {
  font-size: 14px;

  margin-bottom: 0;
  padding-bottom: 24px;
}

/*more button*/
.btn_section {
  display: flex;

  padding-top: 48px;

  justify-content: center;
}

/*button solid*/
.more_btn {
  font-weight: 500;

  padding: 8px 14px 8px 18px;

  transition: all 0.3s ease;

  color: var(--white);
  border-radius: var(--md-rad);
  background-color: var(--orange);
}

.more_btn:hover {
  color: var(--white);
  background-color: rgba(234, 106, 46, 1);
}

/*button link*/
.next_btn {
  font-weight: 700;

  transition: all 0.4s ease;

  color: rgba(0, 0, 0, 0.7);
}

.next_btn i,
.more_btn i {
  font-size: 20px;

  position: relative;

  margin-left: 4px;

  transition: all 0.4s ease;
}

.next_btn i {
  font-weight: 500;

  color: rgba(0, 0, 0, 0.7);
}

.more_btn i {
  color: var(--white);
}

.next_btn:hover,
.next_btn:hover i {
  color: var(--green1);
}

/*****************/
/*    Header     */
/*****************/
.headers {
  height: 65vh;
  max-height: 580px;

  background-color: var(--green2);
  background-attachment: fixed;
  background-position: center;

  object-fit: cover;
  background-blend-mode: screen;
}

.headers .container {
  justify-content: center;
}

/**********************************************/
/*               INDEX PAGE                   */
/**********************************************/
/* Header */
header,
.img_sec {
  background-repeat: no-repeat !important;
  background-position: center !important;
  background-size: cover !important;
}

.header_dashboard {
  height: 100vh;
  max-height: 700px;
}

header .container {
  display: flex;

  height: 100%;

  align-items: center;
}

.body_section {
  margin: 0 36px;
}

header .body_section {
  max-width: 800px;
}

.body_section h3,
.body_section h6 {
  margin-bottom: 15px;
}

.body_section h6 a {
  color: var(--black);
}

.hero_contact {
  display: flex;

  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}

.hero_contact a {
  display: inline-flex;

  align-items: center;
}

.hero_contact span {
  font-size: 18px;
  font-weight: 500;

  padding-right: 9px;
}

.hero_contact i {
  font-size: 20px;

  margin-right: 4px;
}

.hero_contact img {
  height: 18px;
  margin-right: 4px;
}

/* quotes section */
.quotes_section {
  background-color: var(--light);
}

.quotes_body {
  position: relative;
  top: -70px;

  display: flex;

  width: 90%;
  margin: 0 auto;
  padding: 30px 100px;

  border-radius: var(--lg-rad);
  background-color: var(--dark);
  box-shadow: 0 0 1px rgb(0 0 0 / 20%), 0 6px 20px rgb(0 0 0 / 30%);

  align-items: center;
}

.quotes_img {
  width: 180px;
}

.right_quotes {
  padding-left: 36px;
}

.right_quotes h4,
.right_quotes p {
  color: var(--white);
}

/* about section */
.about_section {
  padding-bottom: var(--mb-lg);

  background-color: var(--light);
}

.about_body {
  display: flex;

  justify-content: space-between;
}

.left_about {
  flex: 55%;
}

.about_card {
  padding: 8px 24px;

  transition: all 0.4s ease;

  border-radius: var(--lg-rad);
}

.about_card:hover {
  box-shadow: 0 0 1px rgb(0 0 0 / 15%), 0 6px 20px rgb(0 0 0 / 10%);
}

.about_count {
  font-family: var(--head-font);
  font-size: 72px;
  font-weight: 600;

  padding-bottom: 8px;
}

.about_subtitle {
  font-size: 24px;
  font-weight: 700;

  padding-bottom: 6px;
}

.right_about {
  margin-left: 48px;

  flex: 45%;
}

.about_img {
  width: 100%;
  height: 100%;
}

/* news section */
.news_section .container .body_section {
  padding: var(--m-lg);
}

.news_body {
  padding-top: 24px;
}

.news_card {
  cursor: pointer;
  transition: all 0.4s ease;

  border-radius: var(--lg-rad);
  box-shadow: 0 0 1px rgb(0 0 0 / 5%), 0 3px 15px rgb(0 0 0 / 10%);
}

.news_card:hover {
  box-shadow: 0 0 1px rgb(0 0 0 / 10%), 0 4px 20px rgb(0 0 0 / 15%);
}

.news_card_img {
  position: relative;

  overflow: hidden;

  width: 100%;
  height: 240px;

  border-radius: var(--lg-rad) var(--lg-rad) 0 0;
}

.news_card_img .img_sec {
  width: 100%;
  height: 100%;

  transition: all 0.6s ease;
}

.news_card:hover .news_card_img .img_sec {
  transform: scale(1.1);
}

.news_card_body {
  padding: 25px 30px 30px;
}

.news_date {
  font-weight: 500;

  margin-bottom: 18px;
}

.news_date i {
  margin-right: 12px;
}

.news_title {
  font-family: var(--head-font);
  font-size: 24px;

  margin-bottom: 16px;
}

.news_desc {
  margin-bottom: 42px;
}

.news_link {
  font-weight: 500;

  display: flex;

  transition: all 0.4s ease;

  color: rgba(16, 44, 47, 0.6);

  align-items: center;
}

.news_link i {
  font-size: 24px;

  margin-right: 12px;

  transition: all 0.4s ease;

  color: rgba(16, 44, 47, 0.6);
}

.news_link:hover,
.news_link:hover i {
  color: var(--black);
}

/* star agenda section */
.star_agenda_section .container .body_section {
  padding: var(--m-lg);
}

.star_agenda_section .container .body_section .owl-dots {
  margin-top: 18px;
}

.left_star_agenda {
  flex: 50%;
}

.left_star_agenda .img_sec {
  width: 100%;
  height: 100%;
}

.right_star_agenda {
  padding: 0 72px;

  flex: 50%;
}

.right_star_title {
  font-size: 40px;
  font-weight: 700;

  display: block;

  margin-bottom: 4px;

  transition: all 0.4s ease;
}

.right_star_title:hover {
  transform: translateX(6px);

  color: var(--green1);
}

.right_agenda_title {
  margin-bottom: 9px;
}

.star_agenda_desc {
  margin-bottom: 25px;
}

.star_agenda_desc .img_sec {
  width: 90px;
  height: 90px;
  margin-right: 20px;

  border-radius: 50%;
}

.name_pj {
  font-size: 20px;
  font-weight: 700;

  margin-bottom: 8px;
}

/* contact section */
.contact_section {
  background-color: var(--dark);
}

.contact_section .container .body_section {
  display: flex;

  padding: var(--m-lg);

  justify-content: space-between;
  align-items: center;
}

.contact_header {
  padding-right: 24px;

  flex: 40%;
}

.contact_section h1 {
  color: var(--white);
}

.contact_section p {
  font-size: 20px;

  color: var(--white);
}

.contact_form {
  padding-left: 120px;

  flex: 60%;
}

.contact_form .col,
.contact_form textarea {
  margin-bottom: 48px;
}

.contact_form label {
  font-size: 16px;
  font-weight: 500;

  margin-bottom: 6px;

  color: var(--white);
}

.form-control.form_control {
  padding: 8px 0;

  color: var(--white) !important;
  border: none;
  border-bottom: 1px solid var(--light);
  border-radius: 0;
  background-color: transparent;
}

.form-select.form_select {
  padding: 8px 30px 8px 6px;

  color: var(--orange);
  border: none;
  border-bottom: 1px solid var(--light);
  border-radius: 0;
  background-color: transparent;
  background-image: url(css-images/down-chevron-icon.svg);
  background-position: right 1px center;
  background-size: 12px 9px;
}

.form-control.form_control:focus,
.form-select.form_select:focus {
  border-bottom: 1px solid var(--orange);
  background-color: transparent;
}

.form-control.form_control::placeholder {
  color: rgba(255, 255, 255, 0.2);
}

.submit_message {
  font-weight: 600;

  width: 100%;
  padding: 9px;

  transition: all 0.3s ease-in-out;

  color: var(--black);
  border: none;
  border-radius: var(--md-rad);
  background-color: var(--green2);
}

.submit_message:hover {
  font-weight: 500;

  color: var(--white);
  background-color: var(--orange);
}

/* search bar */
.search__section.offcanvas-top {
  height: 30vh;
  max-height: 190px;

  transition: transform 0.6s ease;

  border: none;
}

.search__body.offcanvas-body {
  overflow-y: hidden;

  padding: 56px 44px 28px;
}

.search__font {
  font-size: 24px;
  font-weight: 500;
  line-height: 24px;

  margin-bottom: 28px;

  color: var(--black);
}

.search__form {
  display: flex;

  align-items: center;
}

.search__field {
  line-height: 22px;

  width: 100%;
  padding: 12px 20px;

  border: 2px solid rgba(16, 44, 47, 0.3);
  border-radius: var(--md-rad);
  outline: none;
}

.search__submit {
  line-height: 22px;

  margin-left: 12px;
  padding: 14px 30px;

  transition: all 0.3s;

  color: var(--white);
  border: none;
  border-radius: var(--md-rad);
  background-color: var(--orange);
}

.search__submit:hover {
  background-color: rgba(234, 106, 46, 1);
}

/*******************************************/
/*               PROFIL PAGE               */
/*******************************************/
/*Profil*/
.linkfil__section .body_section {
  padding: var(--m-lg);
}

.linkfil__section .title_section {
  padding-bottom: 54px;
}

.img__linkfil {
  position: relative;

  overflow: hidden;

  width: 100%;
  height: 120px;

  border-radius: var(--lg-rad);
}

.img__linkfil .img_sec {
  width: 100%;
  height: 100%;

  transition: all 0.4s ease;
}

.linkfil__card {
  display: block;

  height: 280px;
  margin: 0 20px;
}

.linkfil__card:hover .img__linkfil .img_sec {
  transform: scale(1.1);
}

.title__linkfil {
  font-weight: 600;

  transition: all 0.4s ease;
}

.linkfil__card:hover .title__linkfil {
  color: var(--green1);
}

/*Himpunan Mahasiswa Teknik Lingkungan*/
.headers .sub__title {
  font-size: 20px;
  font-weight: 500;
  line-height: 20px;

  margin-top: 24px;
}

.filosofi__section .body_section {
  margin: var(--m-lg);
}

.filosofi__section .body_section img {
  margin-bottom: 48px;
}

.filosofi__section .body_section img {
  width: 240px;
}

.vidprol {
  font-size: 30px;
  font-weight: 600;
}

.videowrapper {
  position: relative;

  float: none;
  clear: both;

  width: 100%;
  height: 0;
  padding-top: 25px;
  padding-bottom: 56.25%;
}

.videowrapper iframe {
  position: absolute;
  top: 0;
  left: 0;

  width: 100%;
  height: 100%;
}

.chief__section {
  margin-top: var(--mb-lg);
}

.chief__content {
  display: flex;
  flex-direction: column;

  width: 80%;
  margin: 0 auto;

  text-align: center;

  align-items: center;
}

.chief__content h5,
.chief__content p {
  color: var(--white);
}

.chief__img {
  width: 130px;
  height: 130px;
  margin-bottom: 36px;

  border-radius: 50%;
}

.chief__icon i {
  font-size: 24px;

  padding: 0 18px;

  transition: all 0.4s ease;

  color: var(--light);
}

.chief__icon i:hover {
  color: rgba(255, 255, 255, 0.6);
}

.chief__break {
  display: none;
}

.arah_tujuan__section {
  padding: var(--m-lg);

  background-color: var(--blight);
}

.arah_tujuan__section .body_section h3 {
  margin-bottom: 36px !important;
}

.visi__point {
  font-size: 24px;

  width: 80%;
}

.misi__point {
  display: flex;

  padding-bottom: 24px;

  align-items: flex-start;
}

.misi__point i {
  font-size: 32px;

  margin-right: 36px;
}

.struktur__section .body_section {
  margin: var(--m-lg);
}

.struktur__img {
  padding: 24px;

  border-radius: var(--md-rad);
  box-shadow: 0 0 1px 0 rgb(0 0 0 / 10%), 0 0 20px 0 rgb(0 0 0 / 12%);
}

.struktur__section .med__zoom {
  width: 100%;
}

.ubid__section {
  margin: var(--m-lg);
}

.ubid__point__head {
  display: flex;

  padding: 30px 0;

  border-bottom: 1px solid rgba(199, 199, 199, 0.6);

  justify-content: space-between;
  align-items: center;
}

.ubid__point__head p {
  font-size: 20px;
  font-weight: 600;

  margin-bottom: 0;
}

.ubid__point__head i {
  font-size: 33px;

  display: flex;

  margin-left: 12px;
}

.card_agenda,
.teams__card {
  border: 1px solid var(--blight);
  border-radius: var(--md-rad);
  box-shadow: 0 0 1px 0 rgb(0 0 0 / 8%), 0 0 20px 0 rgb(0 0 0 / 8%);
}

.title__agenda {
  padding: 24px;

  border-radius: var(--md-rad);
  background-color: var(--dark2);
}

.ttl {
  display: flex;

  align-items: center;
  justify-content: space-between;
}

.ttl span {
  font-weight: 600;
}

.ttl i {
  font-size: 20px;

  margin-left: 9px;
}

.main__agenda {
  padding: 24px;
}

.teams__card {
  max-width: 360px;

  transition: all 0.4s ease;
}

.teams__card:hover {
  transform: translateY(-10px);

  box-shadow: 0 0 1px 0 rgb(0 0 0 / 10%), 0 4px 20px 0 rgb(0 0 0 / 15%);
}

#teams {
  transition: all 0.4s ease;
}

.teams__card:hover #teams {
  background-color: var(--dark2);
}

.teams__card:hover #teams p {
  color: var(--white);
}

.teams__card .img_sec {
  width: 100%;
  height: 300px;

  border-radius: var(--md-rad) var(--md-rad) 0 0;
}

.content__memcard {
  padding: 24px;

  text-align: center;

  border-radius: 0 0 var(--md-rad) var(--md-rad);
}

.content__memcard p {
  margin-bottom: 3px;
}

/*Biro Teknik Lingkungan*/
.biro__section .body_section {
  padding: var(--m-lg);
}

.biro__content {
  margin-top: 72px;
  margin-bottom: 72px;
}

.biro__content:first-child {
  margin-top: 0;
}

.biro__content:last-child {
  margin-bottom: 0;
}

.my__subttl {
  margin-top: 36px;
  margin-bottom: 30px;
}

.img__biro {
  width: 100%;
}

.icon__biro i {
  font-size: 36px;

  margin-right: 12px;
  margin-bottom: 12px;

  transition: all 0.4s ease;
}

.icon__biro i:hover {
  color: var(--green1);
}

/*Unit Kegiatan Mahasiswa*/
.ukm__seni__content,
.ukm__olahraga__content {
  padding-top: 80px;
  padding-bottom: 80px;
}

.seni__section {
  padding: var(--m-lg);
}

.card_foto__ukm {
  border-radius: var(--lg-rad);
  box-shadow: 0 0 1px 0 rgb(0 0 0 / 8%), 0 0 20px 0 rgb(0 0 0 / 8%);
}

.olahraga__section {
  padding-top: 112px;
}

.olahraga__section .olahraga:nth-of-type(even),
.seni__section .seni:nth-of-type(even) {
  background: var(--light);
}

.chief__UKM {
  margin-bottom: 60px;
}

.ketua__ukm,
.penanggung__ukm {
  margin: 10px 0;
}

.list__latihan,
.list__pencapaian {
  margin: 10px 3rem;

  list-style: disc;
}

.icon__jadwal {
  font-size: xx-small;
}

.foto__ukm {
  margin-bottom: 36px;
}

.ukm__card_img {
  position: relative;

  overflow: hidden;

  width: 100%;
  height: 300px;
}

.ukm__card_img .img_sec {
  width: 100%;
  height: 100%;

  transition: all 0.6s ease;
}

.jadwal__latihan {
  margin-bottom: 25px;
}

.ukm__seni__content,
.ukm__olahraga__content {
  margin-top: 72px;
  margin-bottom: 72px;
}

.ukm__seni__content:first-child,
.ukm__olahraga__content:first-child {
  margin-top: 0;
}

.ukm__seni__content:last-child,
.ukm__olahraga__content:last-child {
  margin-bottom: 0;
}

/*******************************************/
/*               BERITA PAGE               */
/*******************************************/
.berita__terkini__section {
  padding: var(--m-lg);
}

.berita__terkini__body {
  margin-bottom: 20px;
}

.left_berita__terkini {
  flex: 58.3%;
}

.left_berita__terkini .img_sec {
  width: 100%;
  height: 100%;
  max-height: 650px;

  border-radius: 0 !important;
}

.right_berita__terkini {
  padding: 0 36px;

  flex: 41.6%;
}

.right_berita__terkini__title {
  margin-bottom: 9px;
}

.right_berita__terkini__title {
  font-size: 25px;
  font-weight: 700;

  display: block;

  margin-bottom: 18px;

  transition: all 0.4s ease;
}

.right_berita__terkini__title:hover {
  transform: translateX(6px);

  color: var(--green1);
}

/* info akademik */
.berita__info__akademik,
.berita__info__beasiswa,
.berita__isi__berita {
  transition: all 0.4s ease-in-out;
}

.berita__info__akademik:hover,
.berita__info__beasiswa:hover {
  transform: translateY(-6px);
}

.info__akademik__section,
.info__beasiswa__section,
.isi__berita__section,
.press__release__section {
  padding: var(--m-lg);
}

.info__beasiswa__section {
  background-color: var(--light);
}

/* info akademik main */
.title__info__akademik,
.title__info__beasiswa,
.title__isi__berita {
  margin-left: 0 !important;
}

.info__akademik__card,
.info__beasiswa__card {
  height: 430px;

  transition: all 0.3s ease;

  box-shadow: 0 0 1px rgb(0 0 0 / 10%), 0 6px 15px rgb(0 0 0 / 8%);
}

.info__akademik__card:hover,
.info__beasiswa__card:hover {
  transition: all 0.3s ease;

  box-shadow: 0 0 1px rgb(0 0 0 / 10%), 0 6px 15px rgb(0 0 0 / 10%);
}

.info__akademik__photo,
.info__beasiswa__photo {
  width: 100%;
  height: 200px;

  background-color: grey;
}

.info__akademik__content,
.info__beasiswa__content {
  display: flex;
  /* padding: 0 40px 24px 0px  ; */

  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
}

.info__akademik__content p,
.info__beasiswa__content p {
  font-size: 16px;
}

.akademik__card_title p {
  font-size: 14px !important;
}

.info__akademik__content h6,
.info__beasiswa__content h6 {
  font-weight: 700;

  margin-top: 20px;
  margin-bottom: 5px;

  -webkit-hyphens: auto;
  -moz-hyphens: auto;
  hyphens: auto;

  -ms-hyphens: auto;
}

.info__akademik__card_content,
.info__beasiswa__card_content {
  padding: 10px 24px;
}

/* info akademik aside */
.akademik__aside__body {
  top: 24px;
}

.icon__berita i {
  font-size: 36px;

  margin-right: 12px;
  margin-bottom: 12px;

  transition: all 0.4s ease;
}

.icon__berita i:hover {
  color: var(--green1);
}

.info__akademik__link {
  display: flex;

  margin-bottom: 24px;
  padding: 12px 18px;

  color: var(--black);
  background-color: var(--light);

  align-items: center;
  justify-content: space-between;
}

.info__akademik__link i {
  transition: all 0.4s ease;
}

.info__akademik__link[aria-expanded="true"] .icon-down {
  transform: rotate(180deg);
}

.thn__title {
  font-weight: 600;
}

.tahun__cc {
  margin-bottom: 24px;
  padding: 0 18px;

  transition: all 0.6s ease;
  transition-delay: 0.2s;
}

.bulan__cc p {
  margin: 5px 0;
}

.bulan__cc {
  padding-left: 0;
  padding-right: 0;

  transition: all 0.4s ease-in-out;
}

.bulan__cc:hover {
  border-radius: 5px;
  /* transform: translateY(-6px); */
  background-color: var(--light);
}

.info__beasiswa__section {
  padding: var(--m-lg);
}

.populer__aside__content {
  margin-bottom: 48px;
}

/* ********  View Berita   ********* */
.isi__berita__populer__aside {
  margin-bottom: 10px;
}

.keterangan__berita {
  font-size: 13px;
}

.isi__berita__image__sec {
  max-height: 800px !important;
}

.isi__berita__aside__sticky {
  top: 50px;
}

.isi__berita__aside__content {
  padding-left: 20px;
}

/* **** Aside view berita **** */
.berita__populer__card {
  transition: all 0.3s ease;

  box-shadow: 0 0 1px rgb(0 0 0 / 10%), 0 6px 15px rgb(0 0 0 / 8%);
}

.berita__populer__card:hover {
  transition: all 0.3s ease;

  box-shadow: 0 0 1px rgb(0 0 0 / 10%), 0 6px 15px rgb(0 0 0 / 10%);
}

.populer__card_title h6 {
  font-size: 15px !important;
  font-weight: 500;

  margin: 0;
}

.populer__photo__sec {
  height: 95px !important;

  object-fit: cover;
}

/* ********* Carousel berita terkait *********** */
.berita__terkait__section {
  background: var(--light);
}

.berita__terkait__section .body_section {
  padding: var(--m-lg);
}

.berita__terkait__section .title_section {
  margin: 0;
}

.berita__terkait__card {
  cursor: pointer;
  transition: all 0.4s ease;

  border-radius: var(--lg-rad);
  box-shadow: 0 0 1px rgb(0 0 0 / 5%), 0 3px 15px rgb(0 0 0 / 10%);
}

.berita__terkait__card:hover {
  box-shadow: 0 0 1px rgb(0 0 0 / 10%), 0 4px 20px rgb(0 0 0 / 15%);
}

.berita__terkait__card_img {
  position: relative;

  overflow: hidden;

  width: 100%;
  height: 240px;

  border-radius: var(--lg-rad) var(--lg-rad) 0 0;
}

.berita__terkait__card_img .img_sec {
  width: 100%;
  height: 100%;

  transition: all 0.6s ease;
}

.berita__terkait__card:hover .berita__terkait__card_img .img_sec {
  transform: scale(1.1);
}

.berita__terkait__card_body {
  padding: 25px 30px 30px;
}

.berita__terkait__date {
  font-weight: 500;

  margin-bottom: 18px;
}

.berita__terkait__date i {
  margin-right: 12px;
}

.berita__terkait__title {
  font-family: var(--head-font);
  font-size: 24px;

  margin-bottom: 16px;
}

.berita__terkait__desc {
  margin-bottom: 42px;
}

/*********************************************/
/*               KALENDER PAGE               */
/*********************************************/
.kalender__section {
  padding: var(--m-lg);
}

.kalender__content {
  padding: 3rem;

  box-shadow: 0 0 20px 0 rgb(0 0 0 / 10%);
}

.fc-button-primary {
  border-color: #fff !important;
  background-color: var(--dark2) !important;
}

.fc-icon {
  color: #fff;
}

#calendar a {
  color: rgba(0, 0, 0, 1);
}

.fc-h-event {
  border: none;
  background-color: var(--green1) !important;
}

.fc-event-title-container .fc-event-title {
  color: #fff !important;
}

.fc-daygrid-event .fc-event-title {
  color: var(--dark2);
}

.fc-daygrid-event-dot {
  border-color: var(--green1) !important;
}

.fc-day-today {
  background-color: rgba(61, 165, 99, 0.2) !important;
}

/* custom style tooltip fullcalendar */
/* .popper,
.tooltip {
  position: absolute;
  z-index: 9999;
  background: #FFC107;
  color: black;
  width: 150px;
  border-radius: 3px;
  box-shadow: 0 0 2px rgba(0,0,0,0.5);
  padding: 10px;
  text-align: center;
}
.style5 .tooltip {
  background: #1E252B;
  color: #FFFFFF;
  max-width: 200px;
  width: auto;
  font-size: .8rem;
  padding: .5em 1em;
}
.popper .popper__arrow,
.tooltip .tooltip-arrow {
  width: 0;
  height: 0;
  border-style: solid;
  position: absolute;
  margin: 5px;
}

.tooltip .tooltip-arrow,
.popper .popper__arrow {
  border-color: #FFC107;
}
.style5 .tooltip .tooltip-arrow {
  border-color: #1E252B;
}
.popper[x-placement^="top"],
.tooltip[x-placement^="top"] {
  margin-bottom: 5px;
}
.popper[x-placement^="top"] .popper__arrow,
.tooltip[x-placement^="top"] .tooltip-arrow {
  border-width: 5px 5px 0 5px;
  border-left-color: transparent;
  border-right-color: transparent;
  border-bottom-color: transparent;
  bottom: -5px;
  left: calc(50% - 5px);
  margin-top: 0;
  margin-bottom: 0;
}
.popper[x-placement^="bottom"],
.tooltip[x-placement^="bottom"] {
  margin-top: 5px;
}
.tooltip[x-placement^="bottom"] .tooltip-arrow,
.popper[x-placement^="bottom"] .popper__arrow {
  border-width: 0 5px 5px 5px;
  border-left-color: transparent;
  border-right-color: transparent;
  border-top-color: transparent;
  top: -5px;
  left: calc(50% - 5px);
  margin-top: 0;
  margin-bottom: 0;
}
.tooltip[x-placement^="right"],
.popper[x-placement^="right"] {
  margin-left: 5px;
}
.popper[x-placement^="right"] .popper__arrow,
.tooltip[x-placement^="right"] .tooltip-arrow {
  border-width: 5px 5px 5px 0;
  border-left-color: transparent;
  border-top-color: transparent;
  border-bottom-color: transparent;
  left: -5px;
  top: calc(50% - 5px);
  margin-left: 0;
  margin-right: 0;
}
.popper[x-placement^="left"],
.tooltip[x-placement^="left"] {
  margin-right: 5px;
}
.popper[x-placement^="left"] .popper__arrow,
.tooltip[x-placement^="left"] .tooltip-arrow {
  border-width: 5px 0 5px 5px;
  border-top-color: transparent;
  border-right-color: transparent;
  border-bottom-color: transparent;
  right: -5px;
  top: calc(50% - 5px);
  margin-left: 0;
  margin-right: 0;
} */
/******************************************/
/*               ARSIP PAGE               */
/******************************************/
/* elibrary section */
.elibrary__section .body_section {
  padding: var(--m-lg);
}

/*elibrary main*/
.elibrary__link {
  display: flex;

  margin-bottom: 24px;
  padding: 12px 18px;

  color: var(--black);
  background-color: var(--light);

  align-items: center;
  justify-content: space-between;
}

.elibrary__link i {
  transition: all 0.4s ease;
}

.elibrary__link[aria-expanded="true"] .icon-down {
  transform: rotate(180deg);
}

.smt__title {
  font-weight: 600;
}

.elibrary__cc {
  transition: all 0.6s ease;
  transition-delay: 0.2s;
}

.elibrary__course {
  transition: all 0.4s ease-in-out;
}

.elibrary__course:hover {
  transform: translateY(-6px);
}

.course__card {
  transition: all 0.3s ease;

  border-radius: var(--md-rad);
  box-shadow: 0 0 1px rgb(0 0 0 / 10%), 0 6px 15px rgb(0 0 0 / 8%);
}

.course__card:hover {
  transition: all 0.3s ease;

  box-shadow: 0 0 1px rgb(0 0 0 / 10%), 0 6px 15px rgb(0 0 0 / 10%);
}

.course__photo {
  width: 100%;
  height: 200px;

  border-radius: 6px 6px 0 0;
  background-color: grey;
}

.course__content {
  display: flex;

  padding: 0 24px 3px;

  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
}

.course__content p {
  font-size: 12px;

  margin: 9px 0 6px;
}

.course__content h6 {
  -webkit-hyphens: auto;
  -moz-hyphens: auto;
  hyphens: auto;

  -ms-hyphens: auto;
}

.cc__sks {
  font-size: 12px;

  margin-bottom: 15px;
  margin-left: 12px;
  padding: 3px 9px;

  color: var(--white);
  border-radius: 25px;
  background-color: var(--green1);
}

.cc__left,
.cc__right {
  flex: 50%;
}

/*elibrary aside*/
.elibrary__aside hr {
  margin: 24px 0;
}

.aside__sticky {
  top: 30px;
}

.date__elibrary {
  display: flex;

  align-items: center;
}

.date__elibrary i {
  margin-right: 12px;
  margin-left: 3px;

  color: var(--green1);
}

.date__elibrary p {
  font-weight: 600;

  margin-bottom: 0;

  color: var(--green1);
}

.from__elibrary {
  margin: 24px 0 36px;
  padding: 0 12px;

  border: 1px solid rgba(227, 227, 226, 1);
}

.from__elibrary i {
  color: var(--green1);
}

.sb__elibrary {
  width: 100%;
  padding: 8px 12px 8px 0;

  border: none;
  outline: none;
}

.submit_elibrary {
  border: 0;
  background-color: transparent;
}

.link__ks {
  font-weight: 600;

  padding: 0 0 8px;

  transition: all 0.3s ease;

  color: var(--green1);
  border-bottom: 2px solid var(--green1);
}

.link__ks:hover {
  color: var(--dark2);
  border-bottom: 2px solid var(--dark2);
}

/* arsip-matkul child page */
.elibrary__root {
  display: flex;

  margin-bottom: 20px;

  justify-content: flex-start;
  align-items: center;
}

.elibrary__root a {
  font-size: 14px;
  font-weight: 500;
  line-height: 14px;

  margin-right: 4px;

  transition: all 0.3s ease;

  color: var(--green1);
}

.elibrary__root a:hover {
  color: rgba(50, 165, 99, 0.7);
}

.elibrary__root i {
  font-size: 14px;

  margin-right: 4px;

  transform: translateY(2px);

  color: var(--green1);
}

.head__eBook {
  margin-bottom: 42px;
}

.head__eBook h3 {
  margin-bottom: 30px !important;
}

.img__eBook {
  width: 100%;
  height: 300px;

  object-fit: cover;
}

.head__item__eBook {
  font-size: 24px;
  font-weight: 700;
}

.elibrary__content>hr {
  margin: 0 0 24px;
}

.item__eBook {
  display: flex;

  justify-content: flex-start;
}

.img__item__eBook {
  width: 120px;
  min-width: 120px;
  height: 60px;
  margin-right: 16px;

  object-fit: cover;
}

.item__meta__link {
  font-weight: 600;
  line-height: 20px;

  display: block;

  margin-bottom: 8px;

  transition: all 0.3s ease;

  color: var(--black);
}

.item__meta__link:hover {
  color: var(--green1);
}

.item__eBook__content p {
  font-size: 14px;

  display: flex;

  margin-bottom: 0;

  flex-wrap: wrap;
}

.meta__item {
  position: relative;

  display: inline-flex;

  padding-right: 14px;

  cursor: pointer;

  color: #888;

  align-items: center;
}

.meta__item:nth-child(1):after,
.meta__item:nth-child(2):after {
  font-size: inherit;

  position: absolute;
  right: 5px;

  display: inline-block;

  width: 3px;
  height: 3px;

  content: "";

  border-radius: 50%;
  background-color: #888;
}

/*******************************************/
/*               KONTAK PAGE               */
/*******************************************/
/* help section */
.help__section {
  padding: var(--m-lg);
}

.help__section .content__card {
  display: flex;

  justify-content: space-between;
}

.help__section .content__card .body__card {
  margin: 15px;
  padding: 30px;

  transition: all 0.6s ease;

  box-shadow: 0 0 1px rgb(0 0 0 / 10%), 0 6px 15px rgb(0 0 0 / 8%);

  flex: calc(100% / 3);
}

.help__section .content__card .body__card a {
  color: var(--black);
}

.help__section .content__card .body__card:hover {
  box-shadow: 0 0 1px rgb(0 0 0 / 12%), 0 6px 15px rgb(0 0 0 / 12%);
}

.help__section .content__card .body__card h5 {
  margin-top: 8px;
  margin-bottom: 12px;

  color: var(--dark2);
}

.help__section .content__card .body__card span {
  font-size: 36px;

  color: var(--dark2);
}

/* map section */
.map__section {
  width: 100%;
  height: 480px;
}

#map {
  width: 100%;
  height: 100%;
}

/* socmed section */
.socmed__section {
  padding: 54px 0;
}

.socmed__section .socmed__head p {
  margin-bottom: 0;
}

.socmed__section .socmed__head .title__socmed {
  font-size: 42px;
  font-weight: 700;
  line-height: 42px;

  margin-bottom: 16px;

  color: var(--dark2);
}

#socmed-content .owl__ilink img {
  height: 84px;

  transition: all 0.3s ease;
}

#socmed-content .owl__ilink img:hover {
  height: 78px;
}

/*******************************************/
/*               RESPONEIVES               */
/*******************************************/
@media (min-width: 1441px) {
  .body_section {
    margin: 0 80px;
  }

  .navbar.nav_pt_pb {
    margin: auto;
  }
}

@media (max-width: 1200px) {

  .list__latihan,
  .list__pencapaian {
    margin: 10px 0;
  }

  .info__akademik__card,
  .info__beasiswa__card {
    height: 460px;
  }
}

@media (max-width: 426px) {
  .latihan__col {
    width: 66.66666667%;

    flex: 0 0 auto;
  }

  .pencapaian__col {
    width: 100%;

    flex: 0 0 auto;
  }
}

/*=============== tablet view ===============*/
@media screen and (max-width: 767px) {

  /*****************************************/
  /*                BERITA                 */
  /*****************************************/
  .info__aside {
    position: relative;
  }

  .info__akademik__card,
  .info__beasiswa__card {
    max-height: 350px;
  }
}

@media screen and (max-width: 991px) {

  /****************************************/
  /*               VARIABLE               */
  /****************************************/
  :root {
    /*padding and margin*/
    --m-lg: 90px 0;
    --mb-lg: 90px;
  }

  /*********************************************/
  /*               GENERAL STYLE               */
  /*********************************************/
  h1 {
    font-size: 60px;
  }

  h2 {
    font-size: 32px;
  }

  h3 {
    font-size: 30px;
  }

  h4 {
    font-size: 24px;
  }

  h6 {
    font-size: 16px;
  }

  /*title section*/
  .title_section {
    max-width: 540px;
  }

  /**********************/
  /*     Navigation     */
  /**********************/
  .navbar {
    padding-right: 18px;
    padding-left: 18px;
  }

  .navbar.nav_pt_pb {
    padding-top: 14px;
    padding-bottom: 14px;
  }

  .navbar-brand img {
    height: 30px;
  }

  .navbar.mobile-nav {
    background-color: var(--white);
  }

  .nav-link.nav_font {
    display: flex;

    padding: 8px 0 !important;

    justify-content: space-between;
    align-items: center;
  }

  .btn_search {
    padding: 10px 16px;
  }

  .btn_search.mobile_view {
    display: flex;
  }

  .navbar-collapse {
    padding: 0 49px;
  }

  .navbar-nav {
    padding: 40px 0 calc(100vh - 384px) 0;
  }

  .nav-item {
    margin: 0;
    padding: 12px 0;

    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  }

  .drop_menu.dropdown-menu {
    padding: 9px 0 0;

    border-radius: 0;
    background-color: transparent;
    box-shadow: none;
  }

  .drop_item.dropdown-item {
    line-height: 17px;

    margin-bottom: 4px;
    padding: 8px 20px 8px 0;
  }

  .btn_search {
    display: none;
  }

  .search__field {
    padding: 6px 16px;
  }

  .search__submit {
    margin-left: 12px;
    padding: 8px 18px;
  }

  /*******************************************/
  /*               PROFIL PAGE               */
  /*******************************************/
  .linkfil__card {
    margin: 0 9px;
  }

  /*Himpunan Mahasiswa Teknik Lingkungan*/
  .vidprol {
    font-size: 24px;
  }

  .visi__point {
    font-size: 20px;
  }

  .ubid__point__head p {
    font-size: 18px;
  }

  .ubid__point__head i {
    font-size: 30px;
  }

  /* Biro Teknik Lingkungan */

  /*******************************************/
  /*               BERITA PAGE               */
  /*******************************************/
  .info__akademik__card,
  .info__beasiswa__card {
    height: 520px;
  }

  /*********************************************/
  /*               KALENDER PAGE               */
  /*********************************************/
  .kalender__content {
    padding: 2rem;

    box-shadow: 0 0 20px 0 rgb(0 0 0 / 10%);
  }

  /******************************************/
  /*               ARSIP PAGE               */
  /******************************************/
  /*******************************************/
  /*               KONTAK PAGE               */
  /*******************************************/
  /* help section */
  .help__section .content__card {
    flex-direction: column;

    justify-content: center;
  }

  .help__section .content__card .body__card {
    margin: 30px;

    flex: 100%;
  }

  /**********************************************/
  /*               INDEX PAGE               */
  /**********************************************/
  /* header */
  .body_section {
    margin: 0;
  }

  .hero_contact span {
    font-size: 16px;
  }

  .hero_contact i {
    font-size: 18px;
  }

  /* quotes section */
  .quotes_body {
    width: 100%;
    padding: 40px 60px;
  }

  /* about section */
  .about_body {
    flex-direction: column;
  }

  .left_about {
    flex: 100%;
  }

  .about_card {
    padding: 12px 30px;
  }

  .about_count {
    font-size: 54px;

    padding-bottom: 0;
  }

  .about_subtitle {
    font-size: 20px;

    padding-bottom: 4px;
  }

  .right_about {
    margin: 30px 0 0 0;

    flex: 100%;
  }

  .about_img {
    height: 300px;
  }

  /* news section */
  .news_date {
    font-size: 14px;

    margin-bottom: 16px;
  }

  .news_desc {
    margin-bottom: 36px;
  }

  /* star agenda section */
  .right_star_agenda {
    padding: 0 36px;
  }

  .right_star_title {
    font-size: 30px;
  }

  .star_agenda_desc .img_sec {
    width: 90px;
    height: 90px;
    margin-right: 20px;

    border-radius: 50%;
  }

  .name_pj {
    font-size: 18px;
  }

  .desc_agenda {
    font-size: 14px;
  }

  /* contact section */
  .contact_form {
    padding-left: 90px;
  }

  .contact_form .row {
    flex-direction: column;
  }

  .contact_form .col,
  .contact_form textarea {
    margin-bottom: 36px;
  }

  /* footer */
  footer .container {
    display: flex;
    flex-direction: column;

    padding: 144px 0 72px;
  }

  .left_footer {
    padding-bottom: 48px;

    justify-content: center;
  }

  .left_content {
    padding-right: 0;
  }

  .right_footer {
    justify-content: center;
  }

  /*********************/
  /*    Search bar     */
  /*********************/
  .search__section.offcanvas-top {
    height: 25vh;
  }

  .search__body.offcanvas-body {
    padding: 36px 24px 18px;
  }

  .search__font {
    font-size: 18px;
    line-height: 18px;

    margin-bottom: 20px;
  }

  .search__field {
    padding: 6px 16px;
  }

  .search__submit {
    margin-left: 12px;
    padding: 8px 18px;
  }

  /*******************************************/
  /*               PROFIL PAGE               */
  /*******************************************/
  .linkfil__card {
    margin: 0 9px;
  }

  /*Himpunan Mahasiswa Teknik Lingkungan*/
  .vidprol {
    font-size: 24px;
  }

  .visi__point {
    font-size: 20px;
  }

  .ubid__point__head p {
    font-size: 18px;
  }

  .ubid__point__head i {
    font-size: 30px;
  }

  /* Biro Teknik Lingkungan */

  /*******************************************/
  /*               BERITA PAGE               */
  /*******************************************/
  /*********************************************/
  /*               KALENDER PAGE               */
  /*********************************************/
  /******************************************/
  /*               ARSIP PAGE               */
  /******************************************/
  /*******************************************/
  /*               KONTAK PAGE               */
  /*******************************************/
  /* help section */
  .help__section .content__card {
    flex-direction: column;

    justify-content: center;
  }

  .help__section .content__card .body__card {
    margin: 30px;

    flex: 100%;
  }

  .help__section .content__card .body__card a {
    color: var(--black);
  }

  /* socmed section */
  .socmed__section .row .title__socmed {
    font-size: 30px;
    line-height: 30px;

    margin-bottom: 16px;
  }

  #socmed-content .owl__ilink img {
    height: 72px;
  }

  #socmed-content .owl__ilink img:hover {
    height: 66px;
  }
}

/*=============== mobile view ===============*/
@media screen and (max-width: 576px) {

  /****************************************/
  /*               VARIABLE               */
  /****************************************/
  :root {
    /*padding and margin*/
    --m-lg: 72px 0;
    --mb-lg: 72px;
  }

  /**************************/
  /*     General Styles     */
  /**************************/
  h1 {
    font-size: 42px;
  }

  .container {
    padding-right: 20px;
    padding-left: 20px;
  }

  /**********************/
  /*     Navigation     */
  /**********************/
  .navbar-brand img {
    height: 28px;
  }

  .fi-rs-menu-burger {
    font-size: 22px;
  }

  .btn_search.mobile_view {
    margin: 0 15px 0 0;
    padding: 0;

    background-color: transparent;
  }

  .icofont-search-1 {
    color: var(--black);
  }

  .btn_search.mobile_view:hover {
    background-color: transparent;
  }

  .mobile_view .btn_caption {
    display: none;
  }

  .navbar-collapse {
    overflow-x: hidden !important;

    padding: 0;
  }

  .drop_item.dropdown-item {
    overflow: hidden;

    white-space: nowrap;
    text-overflow: ellipsis;
  }

  /**************************/
  /*    contact section     */
  /**************************/
  .contact_section .container .body_section {
    flex-direction: column;

    justify-content: center;
  }

  .contact_header {
    margin-bottom: 24px;
    padding-right: 0;

    text-align: center;

    flex: 100%;
  }

  .contact_section p {
    font-size: 18px;
  }

  .contact_form {
    width: 80%;
    padding-left: 0;

    flex: 100%;
  }

  /*****************/
  /*    Footer     */
  /*****************/
  footer .container {
    padding-top: 72px;
    padding-right: 24px;
    padding-left: 24px;
  }

  /*left footer*/
  .left_footer {
    flex-direction: column;

    padding-bottom: 24px;

    justify-content: center;
  }

  .left_img img {
    display: block;

    width: 60%;
    height: auto;
    margin: 0 auto 24px;
  }

  /*right footer*/
  .right_footer {
    flex-direction: column;
  }

  .right_footer ul {
    margin-bottom: 0;
  }

  .quick_links,
  .contact_us {
    padding-right: 0;
    padding-bottom: 24px;
  }

  .social_connect {
    width: 100%;
  }

  /*bottom footer*/
  .bottom_footer {
    padding-right: 24px;
    padding-left: 24px;
  }

  /**********************************************/
  /*               INDEX PAGE                   */
  /**********************************************/
  /* quotes section */
  .quotes_body {
    flex-direction: column;

    padding: 30px 30px;

    text-align: center;
  }

  .quotes_img {
    width: 45%;
    margin-bottom: 2rem;
  }

  .right_quotes {
    padding-left: 0;
  }

  .right_quotes p {
    font-size: 18px;
  }

  /* about section */
  .about_card {
    padding: 16px 40px;
  }

  .about_count {
    font-size: 40px;
  }

  .about_img {
    height: 300px;
  }

  /* news section */
  .news_body {
    padding-top: 8px;
  }

  .news_card_img {
    height: 200px;
  }

  .news_card_body {
    padding: 24px;
  }

  .news_desc {
    font-size: 14px;
  }

  /* star agenda section */
  .star_agenda_body {
    flex-direction: column;
  }

  .left_star_agenda {
    flex: 100%;
  }

  .left_star_agenda .img_sec {
    height: 200px;
  }

  .right_star_agenda {
    padding: 24px;

    text-align: center;

    flex: 100%;
  }

  .star_agenda_desc {
    margin-bottom: 36px;
  }

  .star_agenda_desc {
    flex-direction: column;

    align-items: center;
  }

  .star_agenda_desc .img_sec {
    width: 90px;
    height: 90px;
    margin-right: 0;
    margin-bottom: 16px;
  }

  .name_pj {
    font-size: 18px;
  }

  .desc_agenda {
    font-size: 14px;
  }

  /*******************************************/
  /*               PROFIL PAGE               */
  /*******************************************/
  /*Himpunan Mahasiswa Teknik Lingkungan*/
  .filosofi__section .body_section img {
    width: 180px;
  }

  .vidprol {
    font-size: 20px;

    margin-bottom: 30px;

    text-align: center;
  }

  .chief__content p:nth-child(3),
  .chief__content p:nth-child(4),
  .chief__content p:nth-child(5) {
    font-size: 14px;
  }

  .chief__break {
    display: block;

    width: 85%;
    margin: 0 auto;

    border: 1px solid var(--light);
  }

  /*******************************************/
  /*               PROFIL PAGE               */
  /*******************************************/
  /*Himpunan Mahasiswa Teknik Lingkungan*/
  .filosofi__section .body_section img {
    width: 180px;
  }

  .vidprol {
    font-size: 20px;

    margin-bottom: 30px;

    text-align: center;
  }

  .chief__content p:nth-child(3),
  .chief__content p:nth-child(4),
  .chief__content p:nth-child(5) {
    font-size: 14px;
  }

  .chief__break {
    display: block;

    width: 85%;
    margin: 0 auto;

    border: 1px solid var(--light);
  }

  .visi {
    margin-bottom: 60px;

    text-align: center;
  }

  .visi__point {
    font-size: 16px;

    width: 100%;
  }

  .misi h3 {
    text-align: center;
  }

  .visi,
  .misi {
    padding: 0 12px;
  }

  .misi__point i {
    font-size: 32px;

    margin-right: 20px;
  }

  .ubid__body {
    padding: 0 12px;
  }

  .ubid__point__head p {
    font-size: 16px;
  }

  .ubid__point__head i {
    font-size: 24px;
  }

  .ubid__point__body p,
  .ubid__point__body ol li {
    font-size: 14px;
  }

  .ubid__point__body .subtitle__point {
    font-size: 16px;
  }

  /* Biro Teknik Lingkungan */
  .biro__content {
    margin-top: 60px;
    margin-bottom: 60px;
  }

  .biro__content .agenda__biro {
    margin-bottom: 36px;
  }

  .img__biro {
    display: block;

    width: 75%;
    margin: auto;
  }

  /* Unit Kegiatan Mahasiswa  */
  .list__latihan,
  .list__pencapaian {
    margin: 10px 0;
  }

  /*******************************************/
  /*               BERITA PAGE               */
  /*******************************************/
  .berita__terkini__body {
    flex-direction: column;
  }

  .left_berita__terkini {
    flex: 100%;
  }

  .left_berita__terkini .img_sec {
    height: 200px;
  }

  .right_berita__terkini {
    padding: 0 36px;
  }

  .right_berita__terkini {
    padding: 24px;

    text-align: center;

    flex: 100%;
  }

  .right_berita__terkini__title {
    font-size: 30px;
  }

  /* info section */
  .info__akademik__photo,
  .info__beasiswa__photo {
    height: 150px;
  }

  .info__body {
    margin: 0 0;
  }

  /*********************************************/
  /*               KALENDER PAGE               */
  /*********************************************/
  .kalender__content {
    padding: 0;

    box-shadow: 0 0 0 0 rgb(0 0 0 / 0%);
  }

  .fc-header-toolbar {
    flex-direction: column !important;

    justify-content: center !important;
  }

  .fc-toolbar-title {
    font-size: 36px !important;

    margin-top: 1.5rem !important;
  }

  .fc .fc-view-harness {
    min-height: 443px;
  }

  .fc-toolbar-chunk:nth-child(3) {
    display: none;
  }

  /******************************************/
  /*               ARSIP PAGE               */
  /******************************************/
  /* elibrary section */
  .elibrary__main {
    padding-bottom: 36px;
  }

  .course__photo {
    height: 100px;
  }

  .date__elibrary,
  .search__elibrary {
    display: none;
  }

  /*******************************************/
  /*               KONTAK PAGE               */
  /*******************************************/
  /* help section */
  .title_section {
    padding-bottom: 24px;
  }

  /*content card*/
  .help__section .content__card .body__card {
    margin: 15px;
    padding: 24px;
  }

  /* socmed section */
  .socmed__section .row .socmed__head {
    text-align: center;
  }

  .socmed__section .socmed__head .title__socmed {
    padding: 0 30px;
  }

  .socmed__section .row .socmed__head p:nth-child(2) {
    margin-bottom: 36px;
  }

  /*socmed content*/
  #socmed-content .owl__ilink img {
    height: 48px;
  }

  #socmed-content .owl__ilink img:hover {
    height: 44px;
  }
}

#news-content .owl-stage {
  display: flex !important;
}

#news-content .owl-item {
  display: flex !important;
  flex: 1 0 auto;
}