body {
    font-family:  Tahoma, serif;
    font-size: 16px;
    /*background-image: url("../images/blurred-bg-13.jpg");*/
    background-color: #ededeb;
    min-height: 100vh;
}

.help-block {
    color: red;
}

.validation-message {
    color: #FF0000;
}

p {
    text-align: justify;
}

a:hover {
  text-decoration: underline;
}

.topmenu {
    color:	#C0C0C0;
    background: #264d70;
    padding-right:  100px;
}

.nav-item {
    padding-left:  25px;
}

.tnc-docs {
    font-family: garamount;
    font-size: 14px;
}

.dropdown-menu {
    font-size: 14px;
}

.messageModal-text {
    color: black;
 }

.bg-main {
    background: #000000;
    /*color:	#212F3C;*/
    font-size: 16px;
    color: #283346;
    background-size: cover;
    height: 100vh;
    left: 0;
    top: 0;
    width: 100%;
    position: fixed;
    opacity: 0.4;
    background: url("../images/pexels-photo.png") no-repeat center;
}

.overlay {
    background-color: #000000;
    /*color:	#212F3C;*/
    /*font-size: 16px;*/
    color: #283346;
    /*background-size: cover;*/
    height: 73vh;
    /*left: 0;*/
    /*top: 0;*/
    /*width: 100%;*/
    /*position: fixed;*/
    /*opacity: 0.6;*/
    /*background: center;*/
}

.bg-dim {
    padding-bottom:50px;
    padding-top:50px;
    background-color:rgba(0,0,0,0.5);

}

.footer-icon {
    font-size: 24px;
}

.error {
    /*background: url("../images/fire.jpg") center no-repeat fixed #264d70;*/
    color:	black;
    padding: 100px;
}

.navigation-items{
    display: flex;
    color: 	#C0C0C0;
    justify-content: flex-end;
}

.learn-logos {
    height:100px;
}

.next-step-icon {
/*    width: 50px;*/
    height: 120px;
}

footer {
    bottom: 0;
    width: 100%;
    color: #C0C0C0;
    background:  #264d70;
    padding-top: 15px;
    padding-bottom: 15px;
    font-size:14px;
}

.video-display {
    background-color: #ffffff;
    color: #5D6D7E;
    width: 100%;
    height:100%;
}

.comments {
    background-color: #ffffff;
    color: #5D6D7E;
    width: 100%;
    height:100%;
    padding:20px;
}

pre {
  background-color:#fff;
  overflow:auto;
  margin:0 0 1em;
  padding:.5em 1em;
  font:normal normal 14px/16px "Courier New",Courier,Monospace;
}

pre code,
pre .line-number {
  /* Ukuran line-height antara teks di dalam tag <code> dan <span class="line-number"> harus sama! */
  font:normal normal 14px/16px "Courier New",Courier,Monospace;
  color:black;
  display:block;
}

pre .line-number {
  float:left;
  margin:0 1em 0 -1em;
  border-right:1px solid;
  text-align:right;
}

pre .line-number span {
  display:block;
  padding:0 .5em 0 1em;
}

pre .cl {
  display:block;
  clear:both;
}

/*a, a:hover, a:focus {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s;
}*/

footer a {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s;
}

footer a:hover, a:focus {
    color: #ffffff;
    text-decoration: underline;
    transition: all 0.3s;
}


.tooltip-arrow,
.tooltip > .tooltip-inner {
    background-color: #264d70;
    color: #C0C0C0;
    font-size:12px;
}

#sidebar {
    color: #C0C0C0;
    transition: all 0.3s;
}


#sidebar ul.components {
    margin: 20px 0;
}

#sidebar ul p {
    color: #C0C0C0;
    margin: 10px;
}

#sidebar ul li a {
    margin: 10px;
    font-size: 14px;
    display: block;
}
#sidebar ul li a:hover {
    color: #47748b;
}

#sidebar ul li.active > a, a[aria-expanded="true"] {
    color: #47748b;

}

.navbar.topmenu .navbar-brand {
    color: #FFFFFF;
}


/*Animated service cards*/
.service-card {
    perspective: 1000px;
    height: 500px;
    width: 100%;
}

.service-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.8s;
    transform-style: preserve-3d;
    cursor: pointer;
}

.service-card:hover .service-card-inner {
    transform: rotateY(180deg);
}

.service-card-front,
.service-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 15px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    overflow: hidden;
}

.service-card-front {
    background: linear-gradient(45deg, #dedfdf, #ffffff);
    color: #424141;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 2rem;
}

.service-card-back {
    background: white;
    color: #1f2937;
    transform: rotateY(180deg);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.icon-wrapper {
    /*width: 80px;*/
    /*height: 80px;*/
    background: rgba(255,255,255,0.2);
    border-radius: 60%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #e5e7eb;
}

.feature-list li:last-child {
    border-bottom: none;
}

.hover-lift {
    transition: transform 0.2s;
}

.hover-lift:hover {
    transform: translateY(-5px);
}