.btn-default.btn-transparent {
  color: #fff;
  background-color: transparent;
  border-color: #fff;
}
.btn-default.btn-transparent.btn-dark {
  color: #000000;
  background-color: transparent;
  border-color: #000000;
}
.arrow,
.arrow:before {
  position: absolute;
  left: 50%;
}
.arrow {
  width: 40px;
  height: 40px;
  top: 50%;
  margin: -20px 0 0 -20px;
  -webkit-transform: rotate(45deg);
  border-left: none;
  border-top: none;
  border-right: 2px #ff07ff solid;
  border-bottom: 2px #ff07ff solid;
}
.arrow:before {
  content: "";
  width: 20px;
  height: 20px;
  top: 50%;
  margin: -10px 0 0 -10px;
  border-left: none;
  border-top: none;
  border-right: 1px #ff07ff solid;
  border-bottom: 1px #ff07ff solid;
  animation-duration: 2s;
  animation-iteration-count: infinite;
  animation-name: arrow;
}
@keyframes arrow {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translate(-10px, -10px);
  }
}
.img-circle {
  padding-top: 4px;
}
/*img-responsive fonts @media*/
.img-responsive {
  vertical-align: middle;
}
body {
  background-color: #ffffff;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
  border: 1px solid #ddd;
}
th,
td {
  text-align: left;
  padding: 8px;
}
.text-desc {
  margin: auto;
  width: 100%;
  padding: 20px 20px;
  text-align: left;
}

.textbox {
  background-color: rgba(255, 255, 255, 0.7);
  box-shadow: 10px 14px 18px 0 rgba(0, 0, 0, 0.1);
  transition: 0.3s;
  color: black;
  margin: auto;
  width: 100%;
  padding: 20px 20px;
  text-align: left;
  border-radius: 5px;
}
.textbox-clear {
  background-color: rgba(0, 0, 0, 0.8);
  box-shadow: 10px 14px 18px 0 rgba(0, 0, 0, 0.1);
  transition: 0.3s;
  color: #ffffff;
  margin: auto;
  width: 100%;
  padding: 20px 20px;
  text-align: left;
  border-radius: 5px;
}

/*        card css*/
.card {
  box-shadow: 10px 14px 18px 0 rgba(0, 0, 0, 0.1);
  width: 100%;
}

.card-body {
  padding: 20px 20px;
  text-align: left;
}

.card:hover {
  /*          box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.6);*/
  box-shadow: 10px 14px 18px 1px rgba(0, 0, 0, 0.2);
  top: -1px;
}
.overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
  transition: 0.5s ease;
  background: #c41463;
  border-radius: 4px;
}
.card:hover .overlay {
  opacity: 0.5;
}

@font-face {
  font-family: "OldEnglishFive";
  src: url("/index/font/OldEnglishFive.ttf");
}

h1 {
  text-shadow: 0 0 3px #dda6ae;
  color: #000000;
  padding: 0px;
  text-align: center;
  font-family: "OldEnglishFive", "Helvetica Neue UltraLight",
    "Helvetica Neue Light", "sans-serif";
  font-size: 85px;
  font-weight: 100;
  letter-spacing: 1px;
}

h2 {
  text-shadow: 0 0 6px #dda6ae;
  color: #000000;
  padding: 0px;
  text-align: center;
  font-family: "PermanentMarker", "Helvetica Neue UltraLight",
    "Helvetica Neue Light", "sans-serif";
  font-size: 45px;
  font-weight: 100;
  letter-spacing: 1px;
}

h5 {
  text-align: center;
}

/* for small screens*/
@media screen and (max-width: 767px) {
  h1 {
    font-size: 50px;
  }

  h5 {
    font-size: 1.2rem;
  }
}
