/* smcStyle.css   CSS for SMCPL website v9 SG Copyright Aug 2020 */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.logo {
  height: 50px;
  padding: 0px 10px;
  color: #0000ff;
}

.body {
  font-size: 18px;
  height: 1500px;
}

/* header elements */
.header {
  height: 100vh;
  overflow: hidden;
  background-color: #f1f1f1;
  padding: 20px 10px;
}

.header a {
  float: left;
  color: black;
  text-align: center;
  padding: 12px;
  text-decoration: none;
  font-size: 18px;
  line-height: 25px;
  border-radius: 4px;
}

.header a.logo {
  font-size: 25px;
  font-weight: bold;
}

.header a:hover {
  background-color: #ddd;
  color: black;
}

.header a.active {
  background-color: white;
  color: white;
}

.header-right {
  float: right;
}

.containe-fluid {
	height: 70vh;
}

/* For mobiles: */
@media screen and (min-width: 900px) {
  .header a {
    float: none;
    display: block;
    text-align: left;
  }
  .header-right {
    float: none;
  }
  .tabcontent.responsive {
    float: none;
  }
  .tabcontent.responsive .column {
    float: none;
  }
}

/* For desktop: */
@media only screen and (max-width: 1125px) {
  .header a {
    float: none;
    display: block;
    text-align: center;
  }
  .header-right {
    float: none;
  }
}

/* Navigation bar */
/* .navbar-brand {

  
} */


.navbar {
  box-shadow: 0 5px 10px #efefef;
  float: right;
}

.nav-link {
  font-weight: bold;
  margin: 5px 5px;
  width: 100%;
  border-radius: 5px;
}

.nav-link:hover {
  background: #f8682c;
  width: 100%;
  box-shadow: 5px 5px 10px #999;
  transition: 0.3s;
}

/* Create an active/current "menu button" class */
.nav-link.active {
  background-color: snow;
  display: inline-block;
  box-shadow: 5px 5px 10px #999;
}

.navbar-light .navbar-nav .nav-link {
  color: maroon !important;
}

.banner-info,
.banner-image {
  margin: 25px 0;
}

.list {
  margin: 20px 20px 5px 30px;
}

/* Breadcrumb */
ol.breadcrumb {
  padding: 2px;
  list-style: none;
  background-color: inherit;
  font-size: 14px;
}

/* Slideshow container */
.slideshow-container {
  max-width: 1000px;
  position: relative;
  margin: 10px;
}

/* Automatic Slideshow */
.smcSlides {
   display: none; 
}
img {
  vertical-align: middle;
}

/* Fading animation */
.fade {
  -webkit-animation-name: fade;
  -webkit-animation-duration: 1.5s;
  animation-name: fade;
  animation-duration: 1.5s;
}

@-webkit-keyframes fade {
  from {
    opacity: 0.4;
  }
  to {
    opacity: 1;
  }
}

@keyframes fade {
  from {
    opacity: 0.4;
  }
  to {
    opacity: 1;
  }
}

/* Style the service tab */
.tab {
  float: left;
  width: 70%;
  height: 350px;
}

/* Style the menu buttons inside the tab */
.tab button {
  display: block;
  /*background-color: inherit;*/
  color: black;
  padding: 12px 12px;
  width: auto;
  border: none;
  outline: none;
  text-align: left;
  cursor: pointer;
  transition: 0.3s;
  font-size: 17px;
}

/* Change background color of buttons on hover */
.tab button:hover {
  background-color: blue;
}

/* Create an active/current "tab button" class */
.tab button.active {
  background-color: coral;
  width: auto;
}

/* Style the service tab content */
.tabcontent {
  float: center;
  width: 100%;
  border-left: none;
  height: 300px;
}

/* Create two equal columns that floats next to each other */
.column {
  float: left;
  width: 50%;
  padding: 10px;
}

/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}

.image {
  display: block;
  width: 100%;
  height: auto;
}

.text {
  color: white;
  font-size: 20px;
  position: relative;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  text-align: center;
}

/* consulting services section*/
#strategy {
  padding-top: 80px;
  padding-bottom: 5px;
}

#technology {
  padding-top: 80px;
  padding-bottom: 0px;
}

#financial {
  padding-top: 100px;
  padding-bottom: 200px;
}

/* Services section images */
#strat {
  width: 90%;
  border-color: olive;
}

#tech {
  width: 90%;
  border-color: blue;
}

#fin {
  width: 90%;
  border-color: darkorange;
}

/* Services section hover effect */

.cursor {
  cursor: pointer;
}

.hover-shadow {
  transition: 0.3s;
}

.hover-shadow:hover {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

/* Rounded border */
hr.rounded {
  border-top: 2px solid #bbb;
  border-radius: 5px;
}

#footer {
  font-size: 12px;
  font-weight: bold;
  background-image: linear-gradient(white, silver);
}