@import url("https://fonts.googleapis.com/css2?family=Chakra+Petch:wght@400;500;600;700&family=Nanum+Brush+Script&family=Rubik:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
html {
  scrollbar-width: thin;
  scrollbar-color: rgba(54, 157, 233, 0.5) rgba(14, 24, 39, 0.75);
}

html::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

html::-webkit-scrollbar-track {
  background: rgba(14, 24, 39, 0.75);
}

html::-webkit-scrollbar-thumb {
  background: rgba(54, 157, 233, 0.5);
  border-radius: 10px;
}

body {
  background-color: black;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 100vh;
  scrollbar-width: thin;
  scrollbar-color: rgba(54, 157, 233, 0.5) rgba(14, 24, 39, 0.75);
}

body::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

body::-webkit-scrollbar-track {
  background: rgba(14, 24, 39, 0.75);
}

body::-webkit-scrollbar-thumb {
  background: rgba(54, 157, 233, 0.5);
  border-radius: 10px;
}

.modal.fade {
  scrollbar-width: thin;
  scrollbar-color: rgba(54, 157, 233, 0.5) rgba(14, 24, 39, 0.75);
}

.modal.fade::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

.modal.fade::-webkit-scrollbar-track {
  background: rgba(14, 24, 39, 0.75);
}

.modal.fade::-webkit-scrollbar-thumb {
  background: rgba(54, 157, 233, 0.5);
  border-radius: 10px;
}

h1, h2, h3, h4, h5, h6, p, label, input, button, span, li, tr, td {
  font-family: 'rubik', sans-serif;
  color: #FFFFFF;
}

p {
  font-size: 18px;
}

h1 {
  font-style: normal;
  font-weight: normal;
  font-size: 48px;
  text-shadow: 0px 4px 24px rgba(54, 157, 233, 0.95), 0px 0px 8px rgba(20, 66, 99, 0.95), 0px 0px 22px #369DE9;
}

h2 {
  font-size: 36px;
  line-height: 43px;
  vertical-align: middle;
  font-style: normal;
  font-weight: normal;
  text-align: center;
  text-transform: uppercase;
  text-shadow: 0px 4px 15px rgba(54, 157, 233, 0.75), 0px 0px 8px rgba(20, 66, 99, 0.75), 0px 0px 22px #369DE9;
}

.gradient {
  -webkit-animation: gradient 15s ease infinite;
          animation: gradient 15s ease infinite;
  width: 100%;
  height: 100%;
  min-height: 100vh;
  background-size: 150% 150%;
}

@-webkit-keyframes gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.alert {
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.alert h4 {
  color: white;
  padding-bottom: .5rem;
  text-align: center;
}

.alert p {
  font-size: 20px;
}

.alertwarning h4 {
  border-bottom: 3px solid #e93654;
}

.alertsuccess h4 {
  border-bottom: 3px solid #36e9bc;
}

.brush {
  font-family: 'Nanum Brush Script';
}

span.brush {
  vertical-align: middle;
  font-size: 48px;
}

.btn {
  border-radius: 4px;
  font-family: 'Chakra Petch';
  font-style: normal;
  font-weight: bold;
  font-size: 18px;
  min-width: 85px;
}

.btn-primary {
  background-color: #369DE9;
  -webkit-box-shadow: 0px 2px 12px #369DE9;
          box-shadow: 0px 2px 12px #369DE9;
}

.btn-primary:hover {
  background-color: #5667FB;
  -webkit-box-shadow: 0px 2px 12px #5667FB;
          box-shadow: 0px 2px 12px #5667FB;
}

.btn-primary.green {
  background-color: #749531;
  -webkit-box-shadow: 0px 2px 12px #6d931f;
          box-shadow: 0px 2px 12px #6d931f;
  border: #7ba428 1px solid;
}

.btn-primary.green:hover {
  background-color: #57741b;
}

.btn-primary.purple {
  background-color: #7d217d;
  -webkit-box-shadow: 0px 2px 12px #631563;
          box-shadow: 0px 2px 12px #631563;
  border: #5c0e5c 1px solid;
}

.btn-primary.purple:hover {
  background-color: #5c0e5c;
}

.btn-danger {
  -webkit-box-shadow: 0px 2px 12px #dc3545;
          box-shadow: 0px 2px 12px #dc3545;
}

.btn-close:focus {
  -webkit-box-shadow: unset;
          box-shadow: unset;
}

@-webkit-keyframes fade-in {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-16px, 0, 0);
            transform: translate3d(-16px, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}

@keyframes fade-in {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-16px, 0, 0);
            transform: translate3d(-16px, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}

@-webkit-keyframes waiting {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

@keyframes waiting {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

@-webkit-keyframes bounce {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  33% {
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
  55% {
    -webkit-transform: translateY(5px);
            transform: translateY(5px);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes bounce {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  33% {
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
  55% {
    -webkit-transform: translateY(5px);
            transform: translateY(5px);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@-webkit-keyframes line {
  0% {
    width: 76px;
  }
  32% {
    width: 92px;
  }
  60% {
    width: 14px;
  }
  100% {
    width: 76px;
  }
}

@keyframes line {
  0% {
    width: 76px;
  }
  32% {
    width: 92px;
  }
  60% {
    width: 14px;
  }
  100% {
    width: 76px;
  }
}

.bigbro.maroon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  text-decoration: none;
  -webkit-transition: all .4s;
  transition: all .4s;
  cursor: pointer;
}

.bigbro.maroon:hover .line {
  -webkit-animation-timing-function: ease;
          animation-timing-function: ease;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-name: line;
          animation-name: line;
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
}

.bigbro.maroon:hover .circle svg {
  -webkit-animation-timing-function: ease;
          animation-timing-function: ease;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-name: bounce;
          animation-name: bounce;
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
  -webkit-animation-delay: .5s;
          animation-delay: .5s;
}

.bigbro.maroon:hover .text {
  top: -5px;
}

.bigbro.maroon .circle {
  width: 128px;
  height: 128px;
  position: relative;
  top: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 50%;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(207, 101, 255, 0)), to(rgba(167, 65, 214, 0.75)));
  background: linear-gradient(180deg, rgba(207, 101, 255, 0) 0%, rgba(167, 65, 214, 0.75) 100%);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  -webkit-transition: all .3s;
  transition: all .3s;
  -webkit-transition-timing-function: ease-out;
          transition-timing-function: ease-out;
  border: 1px solid rgba(167, 65, 214, 0.5);
}

.bigbro.maroon .circle svg {
  mix-blend-mode: overlay;
  -webkit-transition: all .5s;
  transition: all .5s;
}

.bigbro.maroon .line {
  width: 76px;
  height: 6px;
  position: relative;
  top: 0;
  border-radius: 4px;
  background-color: #A741D6;
  -webkit-box-shadow: 0px 0px 16px #A741D6;
          box-shadow: 0px 0px 16px #A741D6;
  -webkit-transition: all .25s;
  transition: all .25s;
  -webkit-transition-timing-function: ease-out;
          transition-timing-function: ease-out;
}

.bigbro.maroon .text {
  max-width: 150px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  top: 0;
  -webkit-transition: all .4s;
  transition: all .4s;
}

.bigbro.maroon p {
  font-size: 20px;
  margin: 0;
  padding: 0;
  -webkit-transition: all .4s;
  transition: all .4s;
  text-align: center;
}

.bigbro.tosca {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  text-decoration: none;
  -webkit-transition: all .4s;
  transition: all .4s;
  cursor: pointer;
}

.bigbro.tosca:hover .line {
  -webkit-animation-timing-function: ease;
          animation-timing-function: ease;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-name: line;
          animation-name: line;
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
}

.bigbro.tosca:hover .circle svg {
  -webkit-animation-timing-function: ease;
          animation-timing-function: ease;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-name: bounce;
          animation-name: bounce;
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
  -webkit-animation-delay: .5s;
          animation-delay: .5s;
}

.bigbro.tosca:hover .text {
  top: -5px;
}

.bigbro.tosca .circle {
  width: 128px;
  height: 128px;
  position: relative;
  top: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 50%;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(42, 188, 179, 0)), to(rgba(42, 188, 179, 0.75)));
  background: linear-gradient(180deg, rgba(42, 188, 179, 0) 0%, rgba(42, 188, 179, 0.75) 100%);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  -webkit-transition: all .3s;
  transition: all .3s;
  -webkit-transition-timing-function: ease-out;
          transition-timing-function: ease-out;
  border: 1px solid rgba(42, 188, 179, 0.5);
}

.bigbro.tosca .circle svg {
  mix-blend-mode: overlay;
  -webkit-transition: all .5s;
  transition: all .5s;
}

.bigbro.tosca .line {
  width: 76px;
  height: 6px;
  position: relative;
  top: 0;
  border-radius: 4px;
  background-color: #2ABCB3;
  -webkit-box-shadow: 0px 0px 16px #2ABCB3;
          box-shadow: 0px 0px 16px #2ABCB3;
  -webkit-transition: all .25s;
  transition: all .25s;
  -webkit-transition-timing-function: ease-out;
          transition-timing-function: ease-out;
}

.bigbro.tosca .text {
  max-width: 150px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  top: 0;
  -webkit-transition: all .4s;
  transition: all .4s;
}

.bigbro.tosca p {
  font-size: 20px;
  margin: 0;
  padding: 0;
  -webkit-transition: all .4s;
  transition: all .4s;
  text-align: center;
}

.bigbro.biru {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  text-decoration: none;
  -webkit-transition: all .4s;
  transition: all .4s;
  cursor: pointer;
}

.bigbro.biru:hover .line {
  -webkit-animation-timing-function: ease;
          animation-timing-function: ease;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-name: line;
          animation-name: line;
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
}

.bigbro.biru:hover .circle svg {
  -webkit-animation-timing-function: ease;
          animation-timing-function: ease;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-name: bounce;
          animation-name: bounce;
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
  -webkit-animation-delay: .5s;
          animation-delay: .5s;
}

.bigbro.biru:hover .text {
  top: -5px;
}

.bigbro.biru .circle {
  width: 128px;
  height: 128px;
  position: relative;
  top: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 50%;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(75, 125, 255, 0)), to(rgba(86, 103, 251, 0.75)));
  background: linear-gradient(180deg, rgba(75, 125, 255, 0) 0%, rgba(86, 103, 251, 0.75) 100%);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  -webkit-transition: all .3s;
  transition: all .3s;
  -webkit-transition-timing-function: ease-out;
          transition-timing-function: ease-out;
  border: 1px solid rgba(86, 103, 251, 0.5);
}

.bigbro.biru .circle svg {
  mix-blend-mode: overlay;
  -webkit-transition: all .5s;
  transition: all .5s;
}

.bigbro.biru .line {
  width: 76px;
  height: 6px;
  position: relative;
  top: 0;
  border-radius: 4px;
  background-color: #5667FB;
  -webkit-box-shadow: 0px 0px 16px #5667FB;
          box-shadow: 0px 0px 16px #5667FB;
  -webkit-transition: all .25s;
  transition: all .25s;
  -webkit-transition-timing-function: ease-out;
          transition-timing-function: ease-out;
}

.bigbro.biru .text {
  max-width: 150px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  top: 0;
  -webkit-transition: all .4s;
  transition: all .4s;
}

.bigbro.biru p {
  font-size: 20px;
  margin: 0;
  padding: 0;
  -webkit-transition: all .4s;
  transition: all .4s;
  text-align: center;
}

.bigbro.ungu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  text-decoration: none;
  -webkit-transition: all .4s;
  transition: all .4s;
  cursor: pointer;
}

.bigbro.ungu:hover .line {
  -webkit-animation-timing-function: ease;
          animation-timing-function: ease;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-name: line;
          animation-name: line;
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
}

.bigbro.ungu:hover .circle svg {
  -webkit-animation-timing-function: ease;
          animation-timing-function: ease;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-name: bounce;
          animation-name: bounce;
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
  -webkit-animation-delay: .5s;
          animation-delay: .5s;
}

.bigbro.ungu:hover .text {
  top: -5px;
}

.bigbro.ungu .circle {
  width: 128px;
  height: 128px;
  position: relative;
  top: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 50%;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(122, 84, 246, 0)), to(rgba(122, 84, 246, 0.75)));
  background: linear-gradient(180deg, rgba(122, 84, 246, 0) 0%, rgba(122, 84, 246, 0.75) 100%);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  -webkit-transition: all .3s;
  transition: all .3s;
  -webkit-transition-timing-function: ease-out;
          transition-timing-function: ease-out;
  border: 1px solid rgba(122, 84, 246, 0.5);
}

.bigbro.ungu .circle svg {
  mix-blend-mode: overlay;
  -webkit-transition: all .5s;
  transition: all .5s;
}

.bigbro.ungu .line {
  width: 76px;
  height: 6px;
  position: relative;
  top: 0;
  border-radius: 4px;
  background-color: #7A54F6;
  -webkit-box-shadow: 0px 0px 16px #7A54F6;
          box-shadow: 0px 0px 16px #7A54F6;
  -webkit-transition: all .25s;
  transition: all .25s;
  -webkit-transition-timing-function: ease-out;
          transition-timing-function: ease-out;
}

.bigbro.ungu .text {
  max-width: 150px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  top: 0;
  -webkit-transition: all .4s;
  transition: all .4s;
}

.bigbro.ungu p {
  font-size: 20px;
  margin: 0;
  padding: 0;
  -webkit-transition: all .4s;
  transition: all .4s;
  text-align: center;
}

.bigbro.yellow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  text-decoration: none;
  -webkit-transition: all .4s;
  transition: all .4s;
  cursor: pointer;
}

.bigbro.yellow:hover .line {
  -webkit-animation-timing-function: ease;
          animation-timing-function: ease;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-name: line;
          animation-name: line;
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
}

.bigbro.yellow:hover .circle svg {
  -webkit-animation-timing-function: ease;
          animation-timing-function: ease;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-name: bounce;
          animation-name: bounce;
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
  -webkit-animation-delay: .5s;
          animation-delay: .5s;
}

.bigbro.yellow:hover .text {
  top: -5px;
}

.bigbro.yellow .circle {
  width: 128px;
  height: 128px;
  position: relative;
  top: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 50%;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(202, 214, 65, 0)), to(rgba(202, 214, 65, 0.75)));
  background: linear-gradient(180deg, rgba(202, 214, 65, 0) 0%, rgba(202, 214, 65, 0.75) 100%);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  -webkit-transition: all .3s;
  transition: all .3s;
  -webkit-transition-timing-function: ease-out;
          transition-timing-function: ease-out;
  border: 1px solid rgba(202, 214, 65, 0.5);
}

.bigbro.yellow .circle svg {
  mix-blend-mode: overlay;
  -webkit-transition: all .5s;
  transition: all .5s;
}

.bigbro.yellow .line {
  width: 76px;
  height: 6px;
  position: relative;
  top: 0;
  border-radius: 4px;
  background-color: #CAD641;
  -webkit-box-shadow: 0px 0px 16px #CAD641;
          box-shadow: 0px 0px 16px #CAD641;
  -webkit-transition: all .25s;
  transition: all .25s;
  -webkit-transition-timing-function: ease-out;
          transition-timing-function: ease-out;
}

.bigbro.yellow .text {
  max-width: 150px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  top: 0;
  -webkit-transition: all .4s;
  transition: all .4s;
}

.bigbro.yellow p {
  font-size: 20px;
  margin: 0;
  padding: 0;
  -webkit-transition: all .4s;
  transition: all .4s;
  text-align: center;
}

.modal-container {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 4rem;
}

.modal-container.dua-line .text {
  height: 80px;
}

.modal-title {
  line-height: 1;
}

.modal .modal-dialog .modal-header > * {
  position: relative;
  left: 25px;
}

.modal-dialog {
  max-width: 1100px;
}

.modal-content {
  background-color: unset;
}

.modal-header {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1.2rem;
  height: 100px;
  border-bottom: 3px solid #369DE9;
}

.modal-header > * {
  position: relative;
  left: 25px;
}

.modal-header .btn-close {
  margin: 0;
  color: white;
  width: unset;
  height: unset;
  opacity: 1;
}

.modal-body {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.25)), to(rgba(0, 0, 0, 0.5)));
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0.5) 100%);
  border: 1px solid #144263;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1rem;
  padding: 3rem 2rem;
}

.modal-body iframe, .modal-body lite-youtube {
  height: 100%;
}

.modal-backdrop {
  opacity: 0.4 !important;
}

@media screen and (max-width: 1040px) {
  p, .btn {
    font-size: 16px;
  }
  h1 {
    font-size: 36px;
  }
  h2 {
    font-size: 24px;
    line-height: 32px;
  }
  span.brush {
    font-size: 32px;
  }
}

@media screen and (max-width: 540px) {
  .modal-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 1.5rem;
  }
  .modal .modal-dialog .modal-header > * {
    position: initial;
  }
  .modal-dialog {
    margin: 0;
  }
  .modal-header {
    background: rgba(0, 0, 0, 0.6);
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    width: 100%;
  }
  .modal-body {
    padding: 2rem 1rem;
  }
  .modal-content {
    min-height: 100vh;
  }
  .modal-title {
    text-align: left;
  }
}

@media screen and (min-aspect-ratio: 17 / 9) and (max-width: 990px) {
  .hide-landscape {
    display: none !important;
  }
}

.bigbro {
  height: 70px;
  width: 275px;
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  background: rgba(0, 0, 0, 0.3);
  -webkit-box-orient: horizontal !important;
  -webkit-box-direction: normal !important;
      -ms-flex-direction: row !important;
          flex-direction: row !important;
  border-radius: 8px;
  -webkit-box-align: end !important;
      -ms-flex-align: end !important;
          align-items: flex-end !important;
  -webkit-box-pack: start !important;
      -ms-flex-pack: start !important;
          justify-content: flex-start !important;
  gap: 0 !important;
  border: 1px solid rgba(86, 103, 251, 0.5);
}

.bigbro .circle {
  -webkit-backdrop-filter: none !important;
          backdrop-filter: none !important;
  background: none !important;
  border: none !important;
  height: 100px !important;
}

.bigbro .line {
  display: none;
}

.bigbro .text {
  -webkit-transform: translateY(-19px);
          transform: translateY(-19px);
}

.bigbro:hover .circle img {
  -webkit-animation-timing-function: ease;
          animation-timing-function: ease;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-name: bounce;
          animation-name: bounce;
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
  -webkit-animation-delay: .5s;
          animation-delay: .5s;
}

.sticky > div {
  position: -webkit-sticky;
  position: sticky;
  top: 120px;
}

.sticky > div .modal-header {
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
}

.sticky > div p {
  font-size: 18px;
}

.antigeser {
  position: initial !important;
}

.modal-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 2rem;
}

@-webkit-keyframes form-open {
  0% {
    -webkit-clip-path: polygon(0 0, 20px 0, 20px 0, 20px calc(100% - 20px), 0 100%, 0 100%);
            clip-path: polygon(0 0, 20px 0, 20px 0, 20px calc(100% - 20px), 0 100%, 0 100%);
  }
  100% {
    -webkit-clip-path: polygon(0 0, 20px 0, 100% 0, 100% calc(100% - 20px), 100% 100%, 0 100%);
            clip-path: polygon(0 0, 20px 0, 100% 0, 100% calc(100% - 20px), 100% 100%, 0 100%);
  }
}

@keyframes form-open {
  0% {
    -webkit-clip-path: polygon(0 0, 20px 0, 20px 0, 20px calc(100% - 20px), 0 100%, 0 100%);
            clip-path: polygon(0 0, 20px 0, 20px 0, 20px calc(100% - 20px), 0 100%, 0 100%);
  }
  100% {
    -webkit-clip-path: polygon(0 0, 20px 0, 100% 0, 100% calc(100% - 20px), 100% 100%, 0 100%);
            clip-path: polygon(0 0, 20px 0, 100% 0, 100% calc(100% - 20px), 100% 100%, 0 100%);
  }
}

.modal-header {
  -webkit-animation: form-open 1s cubic-bezier(0.4, 0, 0.15, 1) forwards;
          animation: form-open 1s cubic-bezier(0.4, 0, 0.15, 1) forwards;
}

.modal-kiri > *:nth-child(1) {
  -webkit-animation: waiting 0.2s ease, fade-in 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
          animation: waiting 0.2s ease, fade-in 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  -webkit-animation-delay: 0s, 0.2s;
          animation-delay: 0s, 0.2s;
}

.modal-kiri > *:nth-child(2) {
  -webkit-animation: waiting 0.4s ease, fade-in 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
          animation: waiting 0.4s ease, fade-in 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  -webkit-animation-delay: 0s, 0.4s;
          animation-delay: 0s, 0.4s;
}

.modal-body > *:nth-child(1) {
  -webkit-animation: waiting 0.2s ease, fade-in 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
          animation: waiting 0.2s ease, fade-in 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  -webkit-animation-delay: 0s, 0.2s;
          animation-delay: 0s, 0.2s;
}

.modal-body > *:nth-child(2) {
  -webkit-animation: waiting 0.4s ease, fade-in 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
          animation: waiting 0.4s ease, fade-in 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  -webkit-animation-delay: 0s, 0.4s;
          animation-delay: 0s, 0.4s;
}

.modal-body > *:nth-child(3) {
  -webkit-animation: waiting 0.6s ease, fade-in 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
          animation: waiting 0.6s ease, fade-in 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  -webkit-animation-delay: 0s, 0.6s;
          animation-delay: 0s, 0.6s;
}

.modal-body > *:nth-child(4) {
  -webkit-animation: waiting 0.8s ease, fade-in 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
          animation: waiting 0.8s ease, fade-in 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  -webkit-animation-delay: 0s, 0.8s;
          animation-delay: 0s, 0.8s;
}

.modal-body > *:nth-child(5) {
  -webkit-animation: waiting 1s ease, fade-in 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
          animation: waiting 1s ease, fade-in 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  -webkit-animation-delay: 0s, 1s;
          animation-delay: 0s, 1s;
}

.modal-body > *:nth-child(6) {
  -webkit-animation: waiting 1.2s ease, fade-in 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
          animation: waiting 1.2s ease, fade-in 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  -webkit-animation-delay: 0s, 1.2s;
          animation-delay: 0s, 1.2s;
}

.modal-body > *:nth-child(7) {
  -webkit-animation: waiting 1.4s ease, fade-in 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
          animation: waiting 1.4s ease, fade-in 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  -webkit-animation-delay: 0s, 1.4s;
          animation-delay: 0s, 1.4s;
}

.modal-body > *:nth-child(8) {
  -webkit-animation: waiting 1.6s ease, fade-in 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
          animation: waiting 1.6s ease, fade-in 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  -webkit-animation-delay: 0s, 1.6s;
          animation-delay: 0s, 1.6s;
}

.modal-body > *:nth-child(9) {
  -webkit-animation: waiting 1.8s ease, fade-in 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
          animation: waiting 1.8s ease, fade-in 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  -webkit-animation-delay: 0s, 1.8s;
          animation-delay: 0s, 1.8s;
}

.modal-body > *:nth-child(10) {
  -webkit-animation: waiting 2s ease, fade-in 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
          animation: waiting 2s ease, fade-in 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  -webkit-animation-delay: 0s, 2s;
          animation-delay: 0s, 2s;
}

.modal-body > *:nth-child(11) {
  -webkit-animation: waiting 2.2s ease, fade-in 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
          animation: waiting 2.2s ease, fade-in 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  -webkit-animation-delay: 0s, 2.2s;
          animation-delay: 0s, 2.2s;
}

.modal-body > *:nth-child(12) {
  -webkit-animation: waiting 2.4s ease, fade-in 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
          animation: waiting 2.4s ease, fade-in 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  -webkit-animation-delay: 0s, 2.4s;
          animation-delay: 0s, 2.4s;
}

.sticky {
  -webkit-animation: fade-in 1s cubic-bezier(0.4, 0, 0.2, 1) forwards;
          animation: fade-in 1s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

#modalormawa {
  background: linear-gradient(75deg, rgba(15, 70, 68, 0.1) 10%, rgba(22, 36, 87, 0.35) 70%, rgba(39, 31, 31, 0.5) 100%), linear-gradient(75deg, rgba(1, 51, 50, 0.8) 0%, rgba(39, 31, 31, 0.7) 100%);
}

#modalormawa p {
  z-index: 3;
}

#modalormawa .modal-body .background {
  width: 1px;
  height: 1px;
  position: relative;
  top: -100px;
  z-index: 0;
}

#modalormawa .modal-body .background img {
  mix-blend-mode: screen;
}

#modalormawa #deskripsi {
  background-position: bottom right;
  /* this positions the second image */
  background-repeat: no-repeat;
  /* this applies to both images */
}

#modalormawa .circle {
  width: 128px;
  height: 128px;
  position: relative;
  top: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 50%;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(42, 188, 179, 0)), to(rgba(42, 188, 179, 0.75)));
  background: linear-gradient(180deg, rgba(42, 188, 179, 0) 0%, rgba(42, 188, 179, 0.75) 100%);
  -webkit-backdrop-filter: blur(6px);
          backdrop-filter: blur(6px);
  -webkit-transition: all .3s;
  transition: all .3s;
  -webkit-transition-timing-function: ease-out;
          transition-timing-function: ease-out;
  border: 1px solid rgba(42, 188, 179, 0.5);
}

#modalormawa .image img {
  width: 100%;
  max-width: 256px;
}

#modalormawa .socmed {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

#modalormawa .socmed a {
  -webkit-transition: all .25s;
  transition: all .25s;
}

#modalormawa .socmed a:hover {
  -webkit-transform: translateY(-4px);
          transform: translateY(-4px);
}

#modalormawa .modal-kiri {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2rem;
  margin: 4rem 0;
}

.socmed a {
  width: 52px;
  height: 52px;
  position: relative;
  top: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 50%;
  -webkit-backdrop-filter: blur(6px);
          backdrop-filter: blur(6px);
  -webkit-transition: all .3s;
  transition: all .3s;
  -webkit-transition-timing-function: ease-out;
          transition-timing-function: ease-out;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(42, 188, 179, 0)), to(rgba(42, 188, 179, 0.75)));
  background: linear-gradient(180deg, rgba(42, 188, 179, 0) 0%, rgba(42, 188, 179, 0.75) 100%);
  border: 1px solid rgba(42, 188, 179, 0.5);
}

#ig {
  background: linear-gradient(30deg, rgba(245, 133, 41, 0.1) 0%, rgba(221, 42, 123, 0.5) 50%, #8134af 75%, #515bd4 100%);
  border: 1px solid rgba(129, 52, 175, 0.5);
}

#ytb {
  background: linear-gradient(30deg, rgba(245, 56, 56, 0.2) 0%, #dd2a7b 100%);
  border: 1px solid rgba(221, 42, 123, 0.5);
}

#tiktok {
  background: linear-gradient(30deg, rgba(8, 226, 220, 0.2) 40%, #141414 100%);
  border: 1px solid rgba(29, 136, 150, 0.5);
}

#deskripsi {
  border: none;
}

.nobg {
  background: none !important;
}

.noborder {
  border: none !important;
}

@media screen and (max-width: 1200px) {
  .bigbro {
    width: 100%;
  }
}

@media screen and (max-width: 767px) {
  .bigbro {
    -webkit-backdrop-filter: none !important;
            backdrop-filter: none !important;
  }
  .row-ormawa {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  h1.modal-title {
    font-size: 30px;
    line-height: 32px;
  }
  #modalormawa h2 {
    text-align: left;
    margin-bottom: 0;
    margin-top: 12px;
  }
  #modalormawa h2 + p {
    margin-bottom: 12px;
  }
  #modalormawa .modal-isi {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  #modalormawa .modal-kiri {
    margin: 4rem 0 2rem 0;
  }
  .modal-header {
    background: rgba(0, 0, 0, 0.6);
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .modal .modal-dialog .modal-header > * {
    position: initial;
  }
}

@media screen and (max-width: 540px) {
  .row-ormawa .modal-content {
    min-height: unset;
  }
  .row-ormawa:first-child {
    padding-left: 0;
  }
  #modalormawa .modal-header {
    position: fixed;
    width: 100%;
    z-index: 99;
    -webkit-backdrop-filter: blur(6px);
            backdrop-filter: blur(6px);
    top: 0;
  }
  #modalormawa .modal-isi {
    margin-top: 6rem;
  }
  #modalormawa #deskripsi {
    border-top: 1px solid #369DE9;
  }
  .ormawa-2 {
    padding: 0 16px;
  }
  .col {
    padding-left: 12px;
  }
}

@media screen and (min-aspect-ratio: 17 / 9) {
  .sticky > div {
    top: 0 !important;
  }
  .sticky > div p {
    font-size: 15px !important;
  }
}
/*# sourceMappingURL=ormawa.css.map */