/*.navbar-light .navbar-brand {
  color: #FFFFFF;
}

.navbar-light .navbar-nav .active>.nav-link, .navbar-light .navbar-nav .nav-link.active, .navbar-light .navbar-nav .nav-link.show, .navbar-light .navbar-nav .show>.nav-link {
  color: #FFFFFF;
}


*/
.navbar-light .navbar-nav .nav-link:hover {
  color: orange  ;
}

.nav-pills .nav-link.active, .nav-pills .show>.nav-link {
  color: #fff!important;
  background-color: #fdc50d;
}

.nav-link {
    padding: .50rem 1rem;
    font-size:18px;
    color:gray;
    cursor: pointer;
}

.backtotop {
  font-size:15px;
  color:gray;
  cursor: pointer;
  text-decoration: none;
  font-weight: bold;
}

.backtotop:hover {
  color: orange  ;
}
  
body {
    min-height: 75rem;
  }

.icon-square {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    font-size: 1.5rem;
    border-radius: .75rem;
}
.b-example-divider {
  height: 3rem;
  background-color: rgba(0, 0, 0, .1);
  border: solid rgba(0, 0, 0, .15);
  border-width: 1px 0;
  box-shadow: inset 0 0.5em 1.5em rgb(0 0 0 / 10%), inset 0 0.125em 0.5em rgb(0 0 0 / 15%);
}

.tigertheme{
  background-image: url("../assets/metatiger.jpg");
  background-size: cover;
}

.theme {
  padding: 2rem 1rem;
  margin-bottom: 2rem;
  background-color: #dac02f;
  border-radius: .3rem;
  color:white;
  text-shadow: 2px 2px #242121;
  min-height: 250px;
}

.metatiger {
  background-image: url("../assets/metatiger.jpg");
  background-size: cover;
}

.laptop{
  width: 100%;
  max-width: 800px;
  position: relative;
}

.laptop img{
  width: 100%;
}

.laptop video{
  position: absolute;
  width: 67.7%;
  height: 81.3%;
  background: #000;
  top: 7.1%;
  left: 17.5%;
}

.flex-box {
  display: flex;
  align-items: center;
  justify-content: center;
}

.container-box {
  background-color: yellow;
  height: 300px;
}

.content-box {
  background-color: black;
  color: white;
  text-align: center;
  width: 200px;
}

.card-img-top {
  width: 100%;
  height: 40vh;
  object-fit: cover;
}

html {
  font-size: 14px;
}
@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}



.pricing-header {
  max-width: 700px;
}

.card-deck .card {
  min-width: 220px;
}

.border-top { border-top: 1px solid #e5e5e5; }
.border-bottom { border-bottom: 1px solid #e5e5e5; }

.box-shadow { box-shadow: 0 .25rem .75rem rgba(0, 0, 0, .05); }



.flip-card-container {
  width: 250px;
  min-height:350px;
  height: 100%;
  perspective: 1000px;
}

.flip-card {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 1s;
  transform-style: preserve-3d;
}
.flip-card-container:hover .flip-card {
  transform: rotateY(180deg); /* <=>  rotateY(.5turn) */
}
/* Position the front and back side */
.flip-card-front, .flip-card-back {
  position: absolute;
  width: 100%;
  min-height:350px;
  height: 100%;
  -webkit-backface-visibility: hidden; /* Safari */
  backface-visibility: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  /* border-radius: 0.5rem; */
}
.flip-card-front {
  background-color: rgb(255, 254, 254);
}
.flip-card-back {
  background-color: rgb(255, 254, 254);
  transform: rotateY(180deg);
}

.flip-card-tool {
  background-color: rgb(68, 63, 63) !important;

}

.flip-card-front .flipTool{
  background-color: rgb(99, 95, 95);
}
.flip-card-back .flipTool{
  background-color: rgb(228, 178, 40);
  transform: rotateY(180deg);
}

.flip-card-back p {
  text-align: center;
  margin: 1rem;
  font-size: 1.4rem;
  line-height: 1.5rem;
}
.flip-card-back p span {
  display: block;
  font-size: 1rem;
  font-style: italic;
  font-weight: bold;
  margin-top: 1.25rem;
}