@import url('https://fonts.googleapis.com/css?family=Poppins:200,300,400,500,600,700,800,900&display=swap');
/* @import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600&family=Roboto:wght@400;500;700&display=swap'); */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
  /* font-family: 'Montserrat', sans-serif; */

}

body {
  height: 100%;
}

#loader {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: white;
  z-index: 9999;
}
/* STYLES NAVBAR ****************************************************************/
/* Lustria font family ng favicon */
.nav-link{
  color: black;
}

.nav-link:hover {
  color: #009EFF;
  transform: scale(1.03);
  transition: all .4s ease;
}

.custom-navbarbrand {
  color: black;
  /* padding-top: .3125rem;
  padding-bottom: .3125rem; */
  margin-right: 1rem;
  font-size: 1.75rem;
  text-decoration: none;
  white-space: nowrap;
}

.custom-navbarbrand:hover {
  color: black;
  transform: scale(1.03);
  transition: all .3s ease;
}

.navbar {
  box-shadow: 0 2px 4px 1px rgba(0,0,0,.3);
}





/* STYLES PARALLAX *************************************************************/
#parallax-section .parallax {
  padding-left: 100px;
  padding-right: 100px;
  padding-top: 200px; 
  padding-bottom: 200px; 
  overflow: hidden; 
  position: relative; 
  width: 100%;
  height: 50vh;
  background-image: url(../photo/services/services-main-image.jpg); 
  background-attachment: fixed; 
  background-size: cover; 
  background-repeat: no-repeat; 
  /* background-position: top center; */
  background-position: center center;
}
#parallax-section .page-title {
  background: white; 
  padding-top: 100px;
  padding-bottom: 20px; 
  margin:0 auto; 
  text-align:center;
}

#parallax-section .page-title h1 {
  font-size:35px; 
  letter-spacing:8px;
}

#parallax-section .parallax-content {
  background: white; 
  padding: 30px 100px; 
  width: 100%;
  margin:0 auto; 
  text-align:justify;
}

/* medium */
@media screen and (max-width: 767px) {
  #parallax-section .parallax-content {
    padding: 3em; 
  }
  #parallax-section h2 {
    font-size: 1.5rem;
  }  
  #parallax-section .parallax-title {
    padding-top: 30px; 
    padding-bottom: 30px;    
  }

}
/* small */
@media screen and (max-width: 576px) {
  #parallax-section .page-title h1 {
    font-size:2rem; 
    letter-spacing:0.15rem;
  }
  #parallax-section .parallax-content {
    padding-left: 2em;
    padding-right: 2em;
  }
  #parallax-section .parallax {
    padding-left: 2em;
    padding-right: 2em;
  }  
  #parallax-section h2 {
    font-size: 1.5rem;
  }   
}

/* STYLES FOR SIDE BAR AND CONTENT */
.services-section {
  padding-top: 60px;
  position: sticky;
  top: 0;
  padding-left: 6.25em;
  padding-right: 6.25em;
}

.sidebar {
  margin: 0;
  padding: 0;
  width: 250px;
  background-color: #f1f1f1;
  position: absolute; 
  /* height: 100%; */
  height: 1000px;
  overflow: auto;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  box-shadow: 0px 8px 8px 0px rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  
}

.sidebar a {
  display: block;
  color: black;
  padding: 0.5em;
  text-decoration: none;
}
 
.sidebar a.active {
  background-color: #2F67D5;
  color: white;
}

.list-group-item {
  text-indent: 1.25rem;
}

.list-group-item a.active {
  background-color: #009EFF;
  color: white;
}


.sidebar a:hover:not(.active) {
  background-color: #555;
  color: white;
}

div.content {
  margin-left: 250px;
  padding: 0.5em 1em;
  height: 1000px;
  overflow: auto;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  box-shadow: 0px 8px 8px 0px rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.content-images {
  overflow: hidden; 
  position: relative; 
  width: 100%;
  height: 50vh;
  object-fit: cover;
}

@media screen and (max-width: 767px) {
  .sidebar {
    width: 100%;
    height: auto;
    position: relative;
    display:block;
    
  }
  div.content {
    margin-left: 0;
  }  

}

@media screen and (max-width: 576px) {
  .services-section {
    padding: 2em; 
  }
}

@media screen and (max-width: 400px) {
  .services-section {
    padding-left: 1em;
    padding-right: 1em;
  }  
}

@media screen and (max-width: 830px) {
  .nav-pills {
    flex-direction: column;
  }

}
