:root {
  --primary: #2191f7;
}

* {
  scroll-behavior: smooth;
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  /*overflow-x: hidden;*/
  font-family: sans-serif;
}

a {
  text-decoration: none;
}

b {
  font-weight: 600;
}
body {
  background: url(../images/gravis.jpg) center no-repeat;
  background-size: cover;
  background-attachment: fixed;
}

/* Spinner start */
#spinner {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 100vh;
  background-color: white;
  transform: translate(-50%, -50%);
  z-index: 9999;
  visibility: visible;
  opacity: 1;
  transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}

.hide {
  visibility: hidden;
  opacity: 0;
}

.spinner-border {
  width: 6rem;
  height: 6rem;
  border: 8px solid rgba(0, 0, 0, 0.1);
  border-top-color: #005bb1;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  100% {
    transform: rotate(360deg);
  }
}

.icon-small {
  position: absolute;
  width: 4.2rem !important;
  height: auto !important;
}

/* Spinner End */

/* Homepage */
.logo {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 99;
  background-color: rgba(255, 255, 255, 0.95);
  height: 80px;
  overflow-y: hidden;
  padding-left: 40px;
  padding-right: 40px;
}
/* .hero {
height: 100vh;
background: url(../images/gravis.jpg) center no-repeat;
background-size: cover;
background-attachment: fixed;
} */

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: white;
  z-index: 9999;
  width: 100%;
  display: flex;
  flex-direction: column;
  padding: 0.5rem 1rem;
}

.header .top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 10vh;
}

.header .left,
.header .right {
  display: flex;
  align-items: center;
}

.header .left {
  width: fit-content;
  transform: translateX(-20px);
}

.header-sipeka-logo {
  height: 50px;
}
.header-trisma-logo {
  height: 60px;
  float: right;
}

.header .right {
  width: fit-content;
}

/* .header .right svg {
  width: 35px;
  margin-right: 50px;
} */

.header .bottom {
  text-align: left;
  height: fit-content;
}

.judul-header {
  font-size: 1.5rem;
  margin: 0;
  font-weight: 700;
  font-family: sans-serif;
  color: var(--primary);
  text-shadow: 2px 1px 2px gray;
}

.judul-header.mobile {
  display: none;
}

.judul-header span {
  color: #e0c54e;
}

.home {
  position: relative;
  padding-top: 10%;
  overflow-y: hidden;
  height: 100%;
  background-color: rgba(225, 255, 255, 0.3);
  padding-bottom: 100px;
}

.home .button {
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  width: clamp(50%, 80%, 500px);
  margin: 5% auto 0;
  padding: 10px;
  height: 10vh;
  border-radius: 20px;
  border: 2px solid white;
  background-color: var(--primary);
  font-size: 200%;
  color: white;
  font-weight: bolder;
  text-transform: uppercase;
  overflow: hidden;
  cursor: pointer;
}

.report {
  position: relative;
  z-index: 99;
}

.report-down {
  border-radius: 20px 20px 0px 0px !important;
}

.home .button:hover,
.home .button:focus {
  background-color: #005bb1;
}

.home-button {
  float: right;
  margin-top: 23px;
  opacity: 0.8;
}
.home-button:hover {
  opacity: 1;
}

.dropdownContent .button {
  margin-top: 0px !important;
  border-radius: 0px;
  text-transform: capitalize;
}

.dropdownContent {
  display: none;
  z-index: 1;
  animation: down 0.3s ease-out;
}

.parent {
  border-radius: 0px 0px 20px 20px !important;
}

.show {
  display: block;
}

.home .button h5 {
  margin-left: 5%;
}

.contact-wrapper {
  position: fixed;
  bottom: 0;
  right: 0;
  margin: 0px 15px 20px 0px;
}

.contact-box {
  width: 50px;
  height: 50px;
  background-color: #26a756;
  border-radius: 10px;
  cursor: pointer;
  border: none;
}

.whatsapp {
  display: block;
  margin: 10% auto;
  padding: 3%;
  width: 75%;
  height: auto;
  fill: white;
}

.contact-box:hover,
.contact-box:focus {
  background-color: white;
  border: 2px solid #26a756;
  transform: scale(1.2);
}

.contact-box:active .whatsapp {
  fill: white;
}

.contact-box:hover .whatsapp,
.contact-box:focus .whatsapp {
  fill: #26a756;
}

/* Tablet */
@media (max-width: 1024px) {
  .home {
    padding-top: 35%;
  }
  .home .button {
    font-size: 150%;
  }
}

/* HP */
@media (max-width: 768px) {
  .home {
    padding-top: 50%;
  }

  .home .button {
    margin-top: 15%;
    font-size: 100%;
    margin: 3% auto 0;
  }

  .hero .header .left .header-sipeka-logo {
    width: 20%;
  }
  .header-trisma-logo {
    width: 65%;
  }

  .hero .header .right svg {
    width: 25px;
    margin-right: 10px;
  }

  .judul-header.pc {
    /* font-size: 1rem;
    transform: translate(-10px, -15px);
    margin-top: -15px;
    margin-left: -10px; */
    display: none;
  }
  .judul-header.mobile {
    display: block;
    font-size: 0.8rem;
    width: 100vw;
  }
  .quote-hastag {
    width: 75vw;
  }
}

@keyframes down {
  from {
    transform: translateY(-50%);
  }
  to {
    transform: translateY(0%);
  }
}

@keyframes up {
  from {
    transform: translateY(0%);
  }
  to {
    transform: translateY(-50%);
  }
}
