/* basic configuration */
* {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: #f5f5f5;
  font-family: "Montserrat", sans-serif;
}

/* carousel */
.carousel-item {
  background-color: #f5f5f5;
}

/* navbar */
nav {
  background-color: #f5f5f5;
}

#navbar-container {
  background-color: #f5f5f5;
  border-radius: 50px;
  background: #f5f5f5;
  box-shadow: 13px 13px 26px #d0d0d0, -13px -13px 26px #ffffff;
}

.navbar-toggler:focus,
.navbar-toggler,
.navbar-toggler:active,
.navbar-toggler-icon:focus {
  outline: none;
  border: 0;
  box-shadow: none;
}

.navbar-toggler span {
  margin: 0;
  padding: 0;
}

.navbar-toggler {
  width: 20px;
  height: 20px;
  margin-right: 10px;
  position: relative;
  transition: 0.5s ease-in-out;
}

.toggler-icon {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background: #000000;
  border-radius: 1px;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: 0.25s ease-in-out;
}

.middle-bar {
  margin-top: 0px;
}

/* when navigation is clicked */
.navbar-toggler .top-bar {
  margin-top: 0px;
  transform: rotate(135deg);
}

.navbar-toggler .middle-bar {
  opacity: 0;
  filter: alpha(opacity=0);
}

.navbar-toggler .bottom-bar {
  margin-top: 0px;
  transform: rotate(-135deg);
}

/* state when the navbar is collapsed */
.navbar-toggler.collapsed .top-bar {
  margin-top: -20px;
  transform: rotate(0deg);
}

.navbar-toggler.collapsed .middle-bar {
  opacity: 1;
  filter: alpha(opacity=100);
}

.navbar-toggler.collapsed .bottom-bar {
  margin-top: 20px;
  transform: rotate(0deg);
}

/* image, text, button on landing page */
.landingImage {
  padding: 0;
  margin-top: 20px;
  border-radius: 50px;
  background: #f5f5f5;
}

.goButton a {
  color: inherit;
}

.goButton {
  color: #000000;
  border: 1px solid #000;
  padding: 10px 20px;
  background-color: #f5f5f5;
  border-radius: 50px;
}

.tagline {
  margin-top: 25px;
}

.tagline p {
  margin-bottom: 50px;
}

.goButton:hover {
  background-color: #000000;
  color: #f5f5f5;
}

/* card on about section */
#card-about {
  border: none;
  border-radius: 50px;
  background: #f5f5f5;
  box-shadow: 20px 20px 40px #d0d0d0, -20px -20px 40px #ffffff;
}

#card-about .card-body {
  padding: 25px;
}

/* clik the card text */
ul {
  margin: 65px auto;
  padding: 0;
  list-style: none;
  display: table;
  width: 300px;
  text-align: center;
}
li {
  display: table-cell;
  position: relative;
  padding: 15px 0;
}
li {
  color: #000;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 0.15em;

  display: inline-block;
  padding: 15px 20px;
  position: relative;
}
li:after {
  background: none repeat scroll 0 0 transparent;
  bottom: 0;
  content: "";
  display: block;
  height: 2px;
  left: 50%;
  position: absolute;
  background: #000;
  transition: width 0.3s ease 0s, left 0.3s ease 0s;
  width: 0;
}
li:hover:after {
  width: 100%;
  left: 0;
}
@media screen and (max-height: 300px) {
  ul {
    margin-top: 40px;
  }
}

/* attractive card on services section */
.cards-box {
  position: relative;
  transform: translateX(-20px);
  box-shadow: 13px 13px 26px #d0d0d0, -13px -13px 26px #ffffff;
}

.cards-box .card {
  width: calc(15rem + 16vh);
  max-width: 80vw;
  background: #f5f5f5;
  border-radius: 14px;
  cursor: pointer;
}

.cards-box .card.hide {
  visibility: hidden;
}

.cards-box .card:not(.hide) {
  position: absolute;
  top: 0;
  left: 0;
  transition: all 0.8s cubic-bezier(0.18, 0.98, 0.45, 1);
  box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.07);
}

.cards-box .card:not(.hide)[data-slide="0"] {
  transform: translate(0px, 0px) scale(1);
  z-index: 6;
  opacity: 1;
}

.cards-box .card:not(.hide)[data-slide="1"] {
  transform: translate(15px, 15px) scale(0.975);
  z-index: 5;
  opacity: 0.9;
}

.cards-box .card:not(.hide)[data-slide="2"] {
  transform: translate(30px, 30px) scale(0.95);
  z-index: 4;
  opacity: 0.8;
}

.cards-box .card:not(.hide)[data-slide="3"] {
  transform: translate(45px, 45px) scale(0.925);
  z-index: 3;
  opacity: 0.7;
}

.cards-box .card:not(.hide)[data-slide="4"] {
  transform: translate(60px, 60px) scale(0.9);
  z-index: 2;
  opacity: 0.6;
}

.cards-box .card:not(.hide)[data-slide="5"] {
  transform: translate(75px, 75px) scale(0.875);
  z-index: 1;
  opacity: 0.5;
}

.cards-box .card:not(.hide)[data-slide="0"] {
  transition: all 0.32s cubic-bezier(0.18, 0.98, 0.45, 1);
}

.content-placeholder {
  padding: 14px 18px 20px;
}

.content-placeholder .row {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  margin-bottom: calc(0.8rem + 0.4vw);
}

.content-placeholder .row .img {
  flex-shrink: 0;
  position: relative;
  margin-right: 10px;
  background: #d0d0d0;
  width: calc(56px + 2vw);
  height: calc(56px + 2vw);
  border-radius: 50%;
}

.content-placeholder .row .img::after {
  content: attr(data-letter);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: calc(30px + 1vw);
  font-weight: bold;
  color: white;
}

.content-placeholder .row .img-text {
  background: #d0d0d0;
  width: 45%;
  min-width: 145px;
  height: 20px;
  margin-top: -20px;
  border-radius: 10px;
}

.content-placeholder .row .img-text::after {
  content: "";
  display: block;
  width: 80%;
  height: 10px;
  margin-top: 30px;
  background: #d0d0d0;
  border-radius: 10px;
}

.content-placeholder .text {
  background: #d0d0d0;
  width: 90%;
  height: 2vh;
  min-height: 12px;
  max-height: 14px;
  border-radius: 10px;
}

.content-placeholder .text.text--m {
  width: 80%;
  margin-top: 2vh;
  height: 2vh;
  min-height: 12px;
}

.content-placeholder .text.text--s {
  width: 70%;
  margin-top: 2vh;
  height: 2vh;
  min-height: 12px;
}

.content-placeholder .btn {
  width: 100%;
  height: 50px;
  margin-top: 20px;
  background-color: #d0d0d0;
  border-radius: 40px;
}

.service-card-text {
  font-weight: 800;
}

.find-card-body {
  padding: 60px;
  border: 0;
}

.find-card {
  height: 300px;
  margin-top: 50px;
  border: 0;
  border-radius: 50px;
  background: #f5f5f5;
  box-shadow: 20px 20px 40px #d0d0d0, -20px -20px 40px #ffffff;
}

.card {
  background-color: #f5f5f5;
}

.jumbotron {
  width: 100%;
}

svg {
  width: 100%;
}

.footer {
  height: 300px;
  background-color: #000;
}

#footerMade {
  color: #fff;
  font-size: 25px;
}

.copyright {
  background-color: #000;
  float: right;
  margin-top: 230px;
  margin-bottom: 20px;
  margin-right: 10px;
  color: #ffffff;
}

.copyright a {
  color: inherit;
}

.copyright a {
  color: #ffffff;
}
