html {
  height: 100%;
}
body {
  min-height: 100%;
}
.bg-home {
  background-image: url("../image/bg.jpg");
  background-repeat: repeat;
  background-size: 650px;
}
.bg-style2 {
  background-color: #fefcff;
}
.bg-style1 {
  background: rgb(82, 37, 130);
  background: -webkit-linear-gradient(
    left,
    rgba(82, 37, 130, 1) 0%,
    rgba(132, 77, 145, 1) 100%
  );
  background: -o-linear-gradient(
    left,
    rgba(82, 37, 130, 1) 0%,
    rgba(132, 77, 145, 1) 100%
  );
  background: linear-gradient(
    to right,
    rgba(82, 37, 130, 1) 0%,
    rgba(132, 77, 145, 1) 100%
  );
}
.menu-shadow {
  -webkit-box-shadow: 0px 6px 17px -5px rgba(0, 0, 0, 0.85);
  -moz-box-shadow: 0px 6px 17px -5px rgba(0, 0, 0, 0.85);
  box-shadow: 0px 6px 17px -5px rgba(0, 0, 0, 0.85);
  z-index: 9;
}
p {
  font-family: "Prompt";
  font-weight: normal;
}

.col-shadow {
  -webkit-box-shadow: 0px 6px 10px 1px rgba(209, 209, 209, 1);
  -moz-box-shadow: 0px 6px 10px 1px rgba(209, 209, 209, 1);
  box-shadow: 0px 3px 10px 1px rgba(209, 209, 209, 0.4);
}
.font-regular {
  font-family: "Prompt";
  font-weight: normal;
}
.font-light {
  font-family: "Prompt";
  font-weight: 300;
}
.font-medium {
  font-family: "Prompt";
  font-weight: 500;
}
.font-color1 {
  color: #e1c759 !important;
}
.border-card {
  border-radius: 12px;
}
.img-round-top {
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}
.img-round-bottom {
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
}
.fade-card {
  opacity: 1;
}
.fade-card:hover {
  -webkit-animation-name: fadein; /* Safari 4.0 - 8.0 */
  -webkit-animation-duration: 2s; /* Safari 4.0 - 8.0 */
  animation-name: fadein;
  animation-duration: 1s;
  /*  opacity: 1;*/
}
/* Safari 4.0 - 8.0 */
@-webkit-keyframes fadein {
  from {
    opacity: 0.9;
  }
  to {
    opacity: 1;
  }
}

/* Standard syntax */
@keyframes fadein {
  from {
    opacity: 0.5;
  }
  to {
    opacity: 1;
  }
}
.menu {
  font-family: "PT Mono", monospace;
}
.menu {
  position: relative;
}
.menu:after {
  background: none repeat scroll 0 0 transparent;
  bottom: 0;
  content: "";
  display: block;
  height: 2px;
  left: 50%;
  position: absolute;
  background: #e1c759;
  transition: width 0.3s ease 0s, left 0.3s ease 0s;
  width: 0;
}
.menu:hover:after {
  width: 100%;
  left: 0;
}
.video-style1::before {
  padding-top: 56%;
}
.btn-custom {
  background-color: #c2cb3c;
}
.line-dashed {
  border-top: 2px dashed #919192;
}
.line-solid {
  border-top: 2px solid #919192;
}
.bg-footer {
  background-color: #522582;
}
.cover-play-video {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  opacity: 1;
  /*
  position: absolute;
  left: 0;
  top: 32%;
  width: 100%;
  text-align: center;
  z-index: 1;
*/
}
.icon-overlay {
  font-size: 100px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  text-align: center;
  /*
  left: 0;
  top: 50%;
  width: 100%;
  text-align: center;
*/
  font-size: 4rem;
}
.play-video {
  background-color: black;
  position: absolute;
  opacity: 1;
  border-radius: 100%;
  z-index: 1;
  width: 8rem;
  height: 8rem;
  top: 50%;
  left: 50%;
  margin: 0 auto;
}
.btn-outline-violet {
  border: 1px solid #522582;
}
.btn-outline-violet:hover {
  background-color: #522582;
  color: #fff;
}
.object-cover {
  object-fit: cover !important;
}
.img-style1 {
  height: 33vh;
  object-fit: cover;
}
.img-media {
  height: 250px;
  width: 250px;
}
