/* ==================================================
 * Style by Eko Mardiatno
 * ekomardiatno@gmail.com
 * Instagram @komafx
 * ================================================== */

body {
  font-family: 'Montserrat', sans-serif;
  line-height: 1.5;
  font-weight: 400;
}

a {
  color: #4de8b0;
}

a:hover {
  color: #4de8b0;
  text-decoration: none;
}

.small, small {
  font-size: 85%;
}

.page-wrapper {
  position: relative;
  min-height: 100vh;
  padding-bottom: 5.305rem;
  padding-top: 1.255rem;
}

.page-wrapper a {
  color: #fff;
}

.page-wrapper a :hover {
  color: #fff;
}

.page-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  background-color: black;
  opacity: .75;
  z-index: 2;
}

.page-wrapper .carousel {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: 1;
}

.page-wrapper .carousel .carousel-inner {
  height: 100%;
}

.page-wrapper .carousel .carousel-item {
  height: 100%;
}

.page-wrapper .carousel .carousel-item img {
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.page-wrapper .container {
  position: relative;
  z-index: 3;
}

.form-control {
  background-color: rgba(255,255,255,.75);
  border: 0;
  color: #333;
  font-size: 1.25rem;
  padding: 1rem 1.25rem;
  height: auto;
  font-weight: 700;
  transition: all .35s;
  border-radius: .25rem;
}

select.form-control {
  padding: 1.174rem 1.25rem;
}

.form-control::placeholder {
  color: #555;
}

.form-control:focus {
  background-color: rgba(255,255,255,1);
  box-shadow: none;
  color: #333;
}

.undeline-dashed {
  border-bottom: 1px dashed #fff;
  transition: all .35s;
}

.border-color-hover-danger:hover {
  border-color: #d9534f;
}

.btn-primary {
  background-color: rgba(255,255,255,.75); /* #1b7e5a */
  color: #333;
  border-color: transparent;
  position: relative;
  overflow: hidden;
}

.btn-primary:hover {
  border-color: transparent;
  background-color: rgba(255,255,255,.75);
}

.btn-primary span {
  position: relative;
}

.btn-primary:hover span {
  color: #fff;
}

.btn-primary::before {
  content: "";
  position: absolute;
  top: calc(50% - 0px);
  left: calc(50% - 0px);
  bottom: 0;
  right: 0;
  width: 0;
  height: 0;
  transition: all .45s;
  border-radius: 0;
  background-color: #1b7e5a;
}

.btn-primary:hover::before {
  top: calc(50% - 150px);
  left: calc(50% - 150px);
  width: 300px;
  height: 300px;
  border-radius: 150px;
}

.btn-lg {
  padding-left: 2rem;
  padding-right: 2rem;
  border-radius: 4rem;
}

.powered {
  position: absolute;
  padding: 1rem;
  bottom: 0;
  right: 0;
  z-index: 10;
}

.powered img {
  padding: .275rem;
  background-color: rgba(255,255,255,1);
  border-radius: 20px;
}

@media (max-width: 575px) {
  .powered {
    width: 100%;
    justify-content: center;
  }
}