@import url('https://fonts.googleapis.com/css?family=Roboto:400,700&display=swap');

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  position: relative;
  margin: 0;
  box-sizing: border-box;
  background-color: #fff !important;
  font-family: 'Aleo', Roboto, sans-serif;
}


/*---------------- Breadcrumbs------------------------*/
.breadcrumbs-v4 {
    width: 100%;
    padding: 45px 0;
    position: relative;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url(../img/breadcrumb.jpg);
    background-size: cover;
}
.breadcrumb{
  background-color: transparent; !important;
}
/*---------------- Breadcrumbs------------------------*/

/*---------------- Caption for Owl Carousel------------------------*/
.owl-caption{
  position: absolute;
  right: 10%;
  left: 10%;
  top:65%;
  bottom: 20px;
  z-index: 10;
  padding: 20px 20px 20px 20px;
  color: #444444;
  text-align: right;
  /*background-color: rgb(27 16 16 / 61%);*/
  border-radius : 5px;
}

.owl-caption2{
  position: absolute;
  right: 10%;
  left: 10%;
  top:70%;
  bottom: 20px;
  z-index: 10;
  padding: 20px 20px 20px 20px;
  color: #fff;
  text-align: right;
  background-color: rgb(27 16 18 / 61%);
  border-radius : 5px;
}
.header-caption{
  font-size: 35px;
  font-weight: 700;
}
.text-caption{
  font-size: 20px;
}
/*---------------- Caption for Owl Carousel------------------------*/

/*---------------- Full Slider------------------------*/
.full-image {
	height: 500px;
  width: 100%;
  object-fit: cover;
}

 @media (min-width: 451px) and (max-width: 740px) { 
  .full-image {
    height: 500px;
  }
}
@media (min-width: 800px) and (max-width: 850px) { 
  .full-image {
    height: 450px;
  }
}
/*---------------- Full Slider------------------------*/



/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 20px 0;
  background-color: #17a2b829  !important;
  min-height: 40px;
}

.breadcrumbs h2 {
  font-size: 24px;
  font-weight: 300;
  margin: 0;
  color : #fff;
}

@media (max-width: 992px) {
  .breadcrumbs h2 {
    margin: 0 0 10px 0;
  }
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
}

.breadcrumbs ol li + li {
  padding-left: 10px;
}

.breadcrumbs ol li + li::before {
  display: inline-block;
  padding-right: 10px;
  color: #6c757d;
  content: "/";
}

@media (max-width: 768px) {
  .breadcrumbs .d-flex {
    display: block !important;
  }
  .breadcrumbs ol {
    display: block;
  }
  .breadcrumbs ol li {
    display: inline-block;
  }
}
/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
/*------------------------Owl Button--------------------------*/
.owl-nav{
  margin-bottom: 0px !important;
  margin-top: 0px !important;
}
.owl-nav button {
  position: absolute;
  top: 50%;
  background-color: #000;
  color: #fff;
  margin: 0;
  transition: all 0.3s ease-in-out;
}
.owl-nav button.owl-prev {
  left: 0;
}
.owl-nav button.owl-next {
  right: 0;
}

.owl-dots {
  text-align: center;  
  position: absolute;
  top: 90%;
  right: 50%;
}
.owl-dots button.owl-dot {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  display: inline-block;
  background: #ccc;
  margin: 0 3px;
}

.owl-dots button.owl-dot:focus {
  outline: none;
}
.owl-nav button {
    position: absolute;
    top: 50%;
    right: 95%;
    left: 95%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.38) !important;
}
.owl-nav span {
    font-size: 70px;    
    position: relative;
    top: -5px;
}
.owl-nav button:focus {
    outline: none;
}
/*------------------------Owl Button--------------------------*/

/*------------------------Card--------------------------*/
.card{
    /*position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: #fff;
    background-clip: border-box;
    border: 0 solid transparent;
    border-radius: 0;
    box-shadow: none !important;*/
    border-radius: 5px;
    -webkit-box-shadow: 0 1px 20px 0 rgb(69 90 100 / 8%) !important;
    box-shadow: 0 1px 20px 0 rgb(69 90 100 / 20%) !important;
    border: none;
    margin-bottom: 30px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
/*.card:hover {
  box-shadow: 0 8px 17px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19);  
  transform: scale(1.1); 
  color:#18d4ca;
}*/

.card-title {
  margin-top:0px;
  font-weight: 700;
  font-size: 1.2em;
}
/*------------------------Card--------------------------*/
/*------------------------ IMG HOVER --------------------------*/
/* [1] The container */
.img-hover-zoom {
  height: auto; /* [1.1] Set it as per your need */
  overflow: hidden; /* [1.2] Hide the overflowing of child elements */
  cursor : pointer;
}

/* [2] Transition property for smooth transformation of images */
.img-hover-zoom img {
  transition: transform .5s ease;
}

/* [3] Finally, transforming the image when container gets hovered */
.img-hover-zoom:hover img {
  transform: scale(1.5);
}

.img-hover-zoom--slowmo img {
  transform-origin: 50% 65%;
  transition: transform 3s, filter 3s ease-in-out;
  filter: brightness(120%);
}

/* The Transformation */
.img-hover-zoom--slowmo:hover img {
  filter: brightness(100%);
  transform: scale(1.2);
}

.img-hover-zoom--quick-zoom img {  
  transition: transform 1s, visibility 1s ease-in;
}

/* The Transformation */
.img-hover-zoom--quick-zoom:hover img {
  transform: scale(1.2);
}

/* Blur-zoom Container */
.img-hover-zoom--blur img {
  transition: transform 1s, filter 2s ease-in-out;
  filter: blur(2px);
  transform: scale(1.2);
}

/* The Transformation */
.img-hover-zoom--blur:hover img {
  filter: blur(0);
  transform: scale(1);
}

/*------------------------ IMG HOVER --------------------------*/

/*------------------------ IMG HOVER --------------------------*/
.heading2{
    border-style: solid;
    border-width: 0px 0px 0px 5px;
}
/*------------------------ IMG HOVER --------------------------*/

/*--------------------------------Newsticker- ------------------*/
.newsticker{
    display: inline-block;
    width: 100%;
    max-width: 100%;
    padding: 0;
    margin-bottom: 30px;
    
    margin-right: 50px;
    line-height: 1.3;
    background-color: #e6e9ed;
    
}
.news_span{
    min-width:12%; 
    height: auto;
    float: left;
    color: #fff;
    padding: 10px 15px;
    margin-right: 20px;
    margin-bottom: 0;
    text-align: center;
   /* background-color: #1fa67b; */
    /* background-color: #00AEEF;  */
    background-color: #475268;
    position: relative;
}
/*.news_span:after{
    left: 100%;
    top: 20%;
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
    border-color: rgba(18, 18, 18, 0);
    /* border-left-color: #00AEEF; */
    /*border-left-color: #0288D1;
    border-width: 18px;
    margin-top: -7px;
} */
.news_title{
    clear:float:left; 
    overflow:hidden; 
    padding-right:13%;"
}
.news_title p{
    color:#fff;
    padding:4px 4px; 3px; 8px;
    margin:5px 0px 0px 10px;
    font-size: 17px;
}
.news_title li{
     list-style: none;
     display: inline-block;
}
.news_title span{
     color: #E74C3C;
}
/*------------------------------------------------------------------*/
/*---------------------------Gradient------------------------------*/
.mask.rgba-gradient2 {
    background: linear-gradient(45deg,#90e4ef,#00bcd4);
}
/*---------------------------Gradient------------------------------*/
.text-orange{
  color : #F46000 !important;
}

.header-top{
  background-color: #28a745!important;
  padding-top:10px;
  padding-bottom: 10px;
  color : #fff;
}

/*-------------Footer-------------------*/
.footer-copyright{
  background-color: #3a4753;
}
footer{
  
  bottom: 0;
  width: 100%;
   -webkit-box-shadow: 0 1px 20px 0 rgb(69 90 100 / 8%) !important;
    box-shadow: 0 1px 20px 0 rgb(69 90 100 / 8%) !important;
    background-color: #485664 !important;
   color: #fff;
}

.navbar{
  -webkit-box-shadow: 0 2px 20px 0 rgb(69 90 100 / 8%) !important;
    box-shadow: 0 2px 20px 0 rgb(69 90 100 / 8%) !important;
    background-color: #17a2b8ad!important;
}
@media only screen and (max-width:768px){.navbar{background-color:#17a2b8}}

/*-------------Footer-------------------*/

/*---------------- Back to top button------------------------*/
.back-to-top {
    position: fixed;
    bottom: 2%;
    right: 10px;
    display: none;
    z-index: 99;
}
/*---------------- Back to top button------------------------*/


/*-------------Footer-------------------*/
.view{
  cursor : hand;
}

/*------------- Custom Color -------------------*/
.bg-white1{
 -webkit-box-shadow: 0 1px 20px 0 rgb(69 90 100 / 8%) !important;
    box-shadow: 0 1px 20px 0 rgb(69 90 100 / 8%) !important;
    background-color: #ffffff;
}

.bg-custom{
  background-color: #dff2e34d !important;  
}

.bg-custom1{
  background-color: #28a74526 !important;
}

.bg-custom2{
  background-color: #007bff59 !important;
}

.bg-hijau{
  background-color: rgb(15 161 73 / 52%)!important;
}
.bg-biru{
  background-color: rgb(0 123 255 / 46%)!important;
}

.text-gray{
  color : #343a40 !important;
}

.breadcrumb-item.active {
    color: #2783d5 !important;
}

.text-sm {
    font-size: .875rem!important;
}

.text-custom{
  color:  #fff !important;
}
/*------------- Custom Color -------------------*/
/*------------- News -------------------*/
.b-0 {
    bottom: 0;
}
.bg-shadow {
    background: rgba(76, 76, 76, 0);
    background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(179, 171, 171, 0)), color-stop(49%, rgba(48, 48, 48, 0.37)), color-stop(100%, rgba(19, 19, 19, 0.8)));
    background: linear-gradient(to bottom, rgba(179, 171, 171, 0) 0%, rgba(48, 48, 48, 0.71) 49%, rgba(19, 19, 19, 0.8) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#4c4c4c', endColorstr='#131313', GradientType=0 );
}
.top-indicator {
    right: 0;
    top: 1rem;
    bottom: inherit;
    left: inherit;
    margin-right: 1rem;
}
.overflow {
    position: relative;
    overflow: hidden;
}
/*------------- News -------------------*/
/*------------- Custom Color -------------------*/

#features{
  background-color: #fff !important;
}

#about{
  background-color: #f9f9f9 !important;
}