@import url("https://fonts.googleapis.com/css2?family=Cormorant+Infant:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&display=swap");
:root {
  --themesbg:#342383;
  --blueBg:#3f53d9;
  --gBg:linear-gradient(-90deg, #fee6c2, #e2e1f2);
  --tbg:#1b2945;
  --dbg:#171717;
  --wbg:#fff;
  --hFonts:"Cormorant Infant", serif;
  --bc:#003b6e;
  --greenBg:#007075;
  --bg1:#a41480;
  --text:#050038;
  --lightBlueBgColor:#e9ecff;
}

body {
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--hFonts);
  font-weight: 600;
}

.headerStyles .headTop {
  background: var(--bc);
  color: var(--wbg);
  padding: 0.2em 0;
}
.headerStyles .headTop a {
  color: #fff;
}
.headerStyles .navbar {
  padding: 1.3em 0;
}
.headerStyles .navbar .navbar-nav .nav-link {
  position: relative;
}
.headerStyles .navbar .navbar-nav .nav-link::before {
  content: "";
  display: block;
  width: 0;
  height: 2px;
  background: #000;
  transition: width 0.3s;
  top: 100%;
  position: absolute;
  left: 0;
  right: 0;
}
.headerStyles .navbar .navbar-nav .nav-link:hover::before {
  width: 100%;
}

@media only screen and (min-width: 768px) {
  .dropdown .dropdown-menu {
    display: block;
    opacity: 0;
    height: 0px;
    overflow: hidden;
    padding: 0px;
    top: 90px;
    transition: all 0.3s;
    min-width: 210px;
  }
  .dropdown:hover .dropdown-menu {
    display: block;
    top: 100%;
    height: inherit;
    opacity: 1;
  }
}
@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.bannerStyles .carousel-item img {
  height: 80vh;
  -o-object-fit: cover;
     object-fit: cover;
}

.titleStyle span {
  color: var(--themesbg);
  text-transform: uppercase;
}
.titleStyle h1 {
  font-family: var(--hFonts);
  font-weight: 700;
  font-size: 3.2em;
}
.titleStyle h3 {
  font-family: var(--hFonts);
  font-weight: 700;
  font-size: 2.8em;
}

.darkTitle {
  max-width: 50%;
  margin: auto;
  text-align: center;
}
.darkTitle span {
  color: var(--themesbg);
}
.darkTitle h3 {
  font-family: var(--hFonts);
  font-weight: 700;
  color: #fff;
  font-size: 2.8em;
}
.darkTitle p {
  color: #fff;
}

.homeAbout {
  padding: 3em 0;
  position: relative;
}
.homeAbout p {
  text-align: justify;
}
.homeAbout img {
  border-radius: 0.4em;
  z-index: 3;
  max-height: 70vh;
  -o-object-fit: cover;
     object-fit: cover;
}
.homeAbout .col-md-6 {
  position: relative;
}
.homeAbout .pageImgbox {
  max-width: 550px;
  height: auto;
  float: left;
  margin-right: 1em;
  margin-bottom: 1em;
}

.shape {
  background: rgba(0, 0, 0, 0.253);
  -webkit-mask-image: url(../images/slide-shape-3.svg);
          mask-image: url(../images/slide-shape-3.svg);
  -webkit-mask-size: cover;
          mask-size: cover;
  position: absolute;
  top: 20px;
  right: 15px;
  width: 135px;
  height: 61px;
  opacity: 0.5;
  transform: translatey(0px);
  animation: float 6s ease-in-out infinite;
}
.shape img {
  width: 100%;
  height: auto;
}

@keyframes float {
  0% {
    transform: translatey(0px);
  }
  50% {
    transform: translatey(20px);
  }
  100% {
    transform: translatey(0px);
  }
}
.shapesp {
  width: 4em;
  height: 4em;
  border: 1em solid rgba(255, 255, 255, 0.431);
  border-top: 1em solid rgba(25, 0, 255, 0.671);
  border-left: 1em solid rgba(8, 0, 77, 0.561);
  border-bottom: 1em solid rgba(133, 0, 126, 0.541);
  border-radius: 90%;
  position: absolute;
  bottom: 10px;
  left: 10px;
  z-index: -1;
  transition-property: transform;
  animation-name: rotate;
  animation-duration: 17s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}
@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.btnBorder {
  border-color: var(--themesbg) !important;
  color: var(--themesbg) !important;
  padding: 0.7em 3em;
  border-radius: 4px;
  text-transform: uppercase;
}
.btnBorder::after {
  content: "\f105";
  font-family: "Line Awesome Free";
  font-weight: 900;
  opacity: 0;
  display: inline-block;
  transition: transform 250ms;
  position: absolute;
}
.btnBorder:hover {
  background-color: var(--themesbg) !important;
  color: #fff !important;
}
.btnBorder:hover::after {
  opacity: 1;
  transform: translateX(8px);
}

.btnDark {
  border-color: var(--themesbg) !important;
  color: var(--themesbg) !important;
  background-color: var(--themesbg) !important;
  padding: 0.7em 3em;
  border-radius: 4px;
  text-transform: uppercase;
  color: #fff !important;
}
.btnDark::after {
  content: "\f105";
  font-family: "Line Awesome Free";
  font-weight: 900;
  opacity: 0;
  display: inline-block;
  transition: transform 250ms;
  position: absolute;
}
.btnDark:hover {
  background: var(--wbg) !important;
  color: var(--themesbg) !important;
}
.btnDark:hover::after {
  opacity: 1;
  transform: translateX(8px);
}

.form-control {
  padding: 0.7rem 0.75rem;
}

.sBox {
  background: var(--tbg);
  padding: 3em 0;
  position: relative;
}
.sBox .rBox {
  position: relative;
  overflow: hidden;
  display: block;
}
.sBox .shape {
  background: rgba(255, 255, 255, 0.226);
}

.circleBx {
  animation-name: myanimation;
  animation-duration: 5s;
  animation-iteration-count: infinite;
  position: absolute;
  left: 10px;
  bottom: 60px;
}

@keyframes myanimation {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(2);
  }
  100% {
    transform: scale(1);
  }
}
.spaBox {
  padding: 4em 0;
  background: #000;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
  z-index: 1;
}
.spaBox::after {
  position: absolute;
  background: rgba(0, 0, 0, 0.8);
  width: 100%;
  height: 100%;
  content: "";
  top: 0;
  z-index: -1;
}
.spaBox h3 {
  color: #fff;
}
.spaBox .col-md-6 {
  position: relative;
}
.spaBox .picspa {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0.8em;
}
.spaBox .IconStyle {
  position: absolute;
  right: 0;
  bottom: -40px;
}
.spaBox p {
  color: white;
}

.footerBx {
  background: #171717;
  padding: 3em 0;
  color: var(--wbg);
}
.footerBx h4 {
  font-family: var(--hFonts);
  font-weight: 700;
  font-size: 1.8em;
  color: var(--wbg);
}
.footerBx p {
  font-weight: 300;
}
.footerBx ul {
  margin: 0;
  padding: 0;
}
.footerBx ul li {
  display: block;
  color: var(--wbg);
  font-weight: 300;
  padding: 0.2em 0;
}
.footerBx ul li:hover a {
  color: rgba(255, 255, 255, 0.699);
  display: block;
}
.footerBx ul li a {
  color: var(--wbg);
  text-decoration: none;
  display: inline-block;
}

.borderBott::after {
  content: "";
  display: block;
  width: 0;
  height: 2px;
  background: rgba(255, 255, 255, 0.294);
  transition: width 0.3s;
}
.borderBott:hover::after {
  width: 100%;
}

.footerB {
  padding: 0.5em 0;
}
.footerB a {
  color: var(--dbg);
  text-decoration: none;
  font-weight: 600;
}
.footerB a:hover {
  color: var(--themesbg);
}

.go-top {
  right: 1em;
  bottom: 2em;
  color: #fff;
  text-decoration: none;
  background: var(--themesbg);
  border-radius: 5px;
  border-radius: 50px;
  position: fixed;
  width: 32px;
  height: 32px;
  text-align: center;
  line-height: 32px;
}

@media (min-width: 768px) {
  .breaking-caret:after {
    content: "";
    width: 0;
    height: 0;
    border-top: 16px solid transparent;
    border-left: 10px solid #dc3545;
    border-bottom: 16px solid transparent;
    position: absolute;
    right: -10px;
    top: 0;
  }
}
.eventBx {
  position: relative;
  z-index: 0;
}
.eventBx::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: url(../images/bg.png);
  width: 100%;
  height: 100%;
  background-size: cover;
  opacity: 0.2;
  z-index: -1;
}

.pageBanner {
  position: relative;
  padding: 3em 0;
  background-size: cover;
  background-position: center center;
  z-index: 0;
}
.pageBanner::before {
  position: absolute;
  background-color: rgba(0, 0, 0, 0.5);
  content: "";
  left: 0;
  top: 0;
  z-index: -1;
  height: 100%;
  width: 100%;
}
.pageBanner h1 {
  color: #fff;
  font-family: var(--hFonts);
  font-weight: 700;
  position: relative;
  padding-left: 25px;
  line-height: 1.3em;
}
.pageBanner h1::before {
  content: "";
  width: 3px;
  line-height: 1.3em;
  bottom: 0;
  height: auto;
  position: absolute;
  left: 0;
  top: 0;
  margin-right: 22px;
  background: #ffb606;
}

.contactInn {
  text-align: center !important;
  border: var(--lightBlueBgColor) 1px solid;
  padding: 1.5em;
  border-radius: 0.5em;
}
.contactInn h4 {
  font-family: var(--hFonts);
  font-weight: 700;
  font-size: 2em;
}
.contactInn i {
  font-size: 4em;
}
.contactInn p {
  text-align: center !important;
}
.contactInn .cnd {
  display: none !important;
}
.contactInn a {
  color: var(--dbg);
}

.gallerImg {
  cursor: pointer;
}
.gallerImg img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 8/10;
}

.required {
  font-size: 12px;
  color: #dc3545;
}

.rating {
  float: left;
}

.rating > input {
  display: none;
}

.rating > label:before {
  margin: 5px;
  display: inline-block;
}

.rating > label {
  color: #ddd;
  margin: 0 1px;
}

/***** CSS Magic to Highlight Stars on Hover *****/
.rating > input:checked ~ label,
.rating:not(:checked) > label:hover,
.rating:not(:checked) > label:hover ~ label {
  color: #ff9b00;
} /* hover previous stars in list */
.rating > input:checked + label:hover,
.rating > input:checked ~ label:hover,
.rating > label:hover ~ input:checked ~ label,
.rating > input:checked ~ label:hover ~ label {
  color: #FFED85;
}

.textm_rating i {
  color: #ff9b00;
}

label.cabinet {
  display: block;
  cursor: pointer;
  max-width: 150px;
}

label.cabinet input.file {
  position: relative;
  height: 100%;
  width: auto;
  opacity: 0;
  -moz-opacity: 0;
  filter: progid:DXImageTransform.Microsoft.Alpha(opacity=0);
  margin-top: -30px;
}

#upload-demo {
  width: 90px;
  height: 90px;
}

.gambar {
  width: 80px;
  height: 80px;
  -o-object-fit: cover;
     object-fit: cover;
}/*# sourceMappingURL=styles.css.map */