/* Coming soon */
@import "../../../../../../css2-1";
@import "../../../../../../css2-2";
/*==============
  [00] Page General css
=================*/
body {
  font-family: "Montserrat", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Montserrat", sans-serif;
}

h1 {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  /*font-family: "Fredoka One", cursive;*/
  font-size: 57px;
  font-weight: 700;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  /*text-shadow: 6px 5px 7px #c7badc;*/
  letter-spacing: 5px;
}
h1 span {
  width: 100%;
  position: relative;
}
h1 span:before {
  background: #1f6241;
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  content: "";
  mix-blend-mode: screen;
}
.page-section {
  background-image: url(../images/background-3.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  overflow: hidden;
  position: relative;
}
.loader-wrapper {
  height: 100vh;
  width: 100vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: #ffffff;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: fixed;
  z-index: 9;
  top: 0;
}

.loader {
  border: 16px solid #111;
  border-radius: 50%;
  border-top: 16px double #a98ad8;
  border-bottom: 16px double #a98ad8;
  width: 50px;
  height: 50px;
  -webkit-animation: spin 2s linear infinite; /* Safari */
  animation: spin 2s linear infinite;
}

@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
  }
}
@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
/*==============
  [01] Page css
=================*/
.page-section .content-detail {
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.page-section .content-detail #timer {
  padding: 30px 0;
  color: #111;
  text-align: center;
  text-transform: uppercase;
}
.page-section .content-detail #timer .date-box {
  margin: 8px;
  padding: 10px;
  width: 85px;
  height: 85px;
  display: inline-block;
  background-color: #7c3adf;
  font-size: 28px;
  font-weight: 600;
  z-index: 2;
  color: #fff;
  border-radius: 30px;
}
.page-section .content-detail #timer .text {
  font-size: 12px;
  font-weight: 500;
  color: #fff;
}
.page-section .content-detail .nav-details {
  padding: 15px 0;
}
.page-section .content-detail .nav-details form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.page-section .content-detail .nav-details input {
  width: 300px;
  margin: 5px;
  padding: 8px 15px;
  color: #777;
  border: 1px solid #7c3adf;
  border-radius: 30px;
  font-size: 14px;
  background-color: #f7f5f8;
  outline: transparent;
}
.page-section .content-detail .nav-details .btn {
  margin: 5px;
  padding: 8px 15px;
  color: #7c3adf;
  border: 1px solid #7c3adf;
  border-radius: 30px;
  font-size: 14px;
  text-transform: capitalize;
}
.page-section .content-detail .nav-details .btn:hover {
  background-color: #7c3adf;
  color: #fff;
}
.page-section .content-detail .sub-title,
.page-section .content-detail .detail-text {
  max-width: 500px;
  display: block;
  color: #777;
  text-align: center;
}
.page-section .content-detail .sub-title {
  margin-bottom: 15px;
  font-weight: 600;
  font-size: 30px;
  color: #555;
}
.page-section .content-detail .global-title {
  display: block;
  color: #5bc86d;
  font-size: 150px;
  font-weight: 800;
}
.page-section .content-detail .global-title span {
  -webkit-animation: animateblur 1s linear forwards;
          animation: animateblur 1s linear forwards;
}
.page-section .content-detail .global-title span:nth-child(1) {
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}
.page-section .content-detail .global-title span:nth-child(2) {
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
}
.page-section .content-detail .global-title span:nth-child(3) {
  -webkit-animation-delay: 3s;
          animation-delay: 3s;
}
@-webkit-keyframes animateblur {
  0% {
    opacity: 0;
    -webkit-filter: blur(10px);
            filter: blur(10px);
  }
  100% {
    opacity: 1;
    -webkit-filter: blur(0px);
            filter: blur(0px);
  }
}
@keyframes animateblur {
  0% {
    opacity: 0;
    -webkit-filter: blur(10px);
            filter: blur(10px);
  }
  100% {
    opacity: 1;
    -webkit-filter: blur(0px);
            filter: blur(0px);
  }
}
.page-section .content-detail .back-btn {
  margin-top: 15px;
}
.page-section .content-detail .back-btn .btn {
  padding: 8px 15px;
  color: #fff;
  border-radius: 30px;
  font-size: 14px;
  background: ##1f6241;
  -webkit-box-shadow: 0px 5px 10px #a98ad8;
          box-shadow: 0px 5px 10px #a98ad8;
}
.page-section .content-detail .back-btn .btn:hover {
  background: ##1f6241;
  color: #fff;
  -webkit-box-shadow: 0px 5px 10px #cab6e8;
          box-shadow: 0px 5px 10px #cab6e8;
}
.page-section .content-detail .container-txt {
  width: 415px;
  height: 160px;
  top: 0;
  left: 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.page-section .content-detail .container-txt div {
  display: block;
  position: absolute;
}
.page-section .content-detail .container-txt .blobs_1 {
  background: #1f6241;
  width: 62px;
  height: 62px;
  top: 58px;
  left: 210px;
  mix-blend-mode: color;
  -webkit-animation: circlemoves 15s ease-in-out infinite alternate;
          animation: circlemoves 15s ease-in-out infinite alternate;
}
.page-section .content-detail .container-txt .blobs_2 {
  background: #1f6241;
  width: 78px;
  height: 78px;
  top: 50px;
  left: 230px;
  mix-blend-mode: color;
  -webkit-animation: circlemoves 15s ease-in-out infinite alternate;
          animation: circlemoves 15s ease-in-out infinite alternate;
}
.page-section .content-detail .container-txt .blobs_3 {
  background: #1f6241;
  width: 63px;
  height: 63px;
  top: 45px;
  left: -3px;
  mix-blend-mode: color;
  -webkit-animation: circlemoves 15s ease-in-out infinite alternate;
          animation: circlemoves 15s ease-in-out infinite alternate;
}
.page-section .content-detail .container-txt .blobs_4 {
  background: #1f6241;
  width: 95px;
  height: 95px;
  top: -30px;
  left: 100px;
  mix-blend-mode: color;
  -webkit-animation: circlemoves 15s ease-in-out infinite alternate;
          animation: circlemoves 15s ease-in-out infinite alternate;
}
.page-section .content-detail .container-txt .blobs_5 {
  background: #1f6241;
  width: 48px;
  height: 48px;
  top: 55px;
  left: 70px;
  mix-blend-mode: color;
  -webkit-animation: circlemoves 15s ease-in-out infinite alternate;
          animation: circlemoves 15s ease-in-out infinite alternate;
}
.page-section .content-detail .container-txt .blobs_6 {
  background: #1f6241;
  width: 66px;
  height: 66px;
  top: -7px;
  right: 70px;
  mix-blend-mode: color;
  -webkit-animation: circlemoves 15s ease-in-out infinite alternate;
          animation: circlemoves 15s ease-in-out infinite alternate;
}
.page-section .content-detail .container-txt .blobs_7 {
  background: #1f6241;
  width: 52px;
  height: 52px;
  top: 25px;
  left: 336px;
  mix-blend-mode: color;
  -webkit-animation: circlemoves 15s ease-in-out infinite alternate;
          animation: circlemoves 15s ease-in-out infinite alternate;
}
@-webkit-keyframes circlemoves {
  0% {
    border-radius: 25% 69% 58% 42%/52% 72% 65% 56%;
  }
  10% {
    border-radius: 75% 28% 50% 48%/70% 44% 55% 29%;
  }
  20% {
    border-radius: 47% 53% 29% 67%/30% 40% 59% 69%;
  }
  30% {
    border-radius: 72% 25% 65% 45%/33% 63% 33% 65%;
  }
  40% {
    border-radius: 63% 35% 55% 43%/25% 25% 75% 75%;
  }
  50% {
    border-radius: 35% 63% 73% 33%/63% 25% 73% 35%;
  }
  60% {
    border-radius: 25% 75% 25% 73%/75% 53% 45% 25%;
  }
  70% {
    border-radius: 38% 59% 63% 32%/72% 62% 32% 24%;
  }
  80% {
    border-radius: 53% 44% 36% 62%/35% 32% 72% 60%;
  }
  90% {
    border-radius: 24% 74% 72% 32%/40% 49% 49% 60%;
  }
  100% {
    border-radius: 60% 29% 29% 65%/68% 75% 30% 32%;
  }
}
@keyframes circlemoves {
  0% {
    border-radius: 25% 69% 58% 42%/52% 72% 65% 56%;
  }
  10% {
    border-radius: 75% 28% 50% 48%/70% 44% 55% 29%;
  }
  20% {
    border-radius: 47% 53% 29% 67%/30% 40% 59% 69%;
  }
  30% {
    border-radius: 72% 25% 65% 45%/33% 63% 33% 65%;
  }
  40% {
    border-radius: 63% 35% 55% 43%/25% 25% 75% 75%;
  }
  50% {
    border-radius: 35% 63% 73% 33%/63% 25% 73% 35%;
  }
  60% {
    border-radius: 25% 75% 25% 73%/75% 53% 45% 25%;
  }
  70% {
    border-radius: 38% 59% 63% 32%/72% 62% 32% 24%;
  }
  80% {
    border-radius: 53% 44% 36% 62%/35% 32% 72% 60%;
  }
  90% {
    border-radius: 24% 74% 72% 32%/40% 49% 49% 60%;
  }
  100% {
    border-radius: 60% 29% 29% 65%/68% 75% 30% 32%;
  }
}

/* Responsive css */
@media (max-width: 768px) {
  .page-section .content-detail {
    padding: 0 15px;
  }
  .page-section .content-detail .global-title {
    font-size: 120px;
    font-weight: 700;
  }
  .page-section .content-detail .sub-title {
    font-weight: 500;
    font-size: 25px;
  }
  .page-section .content-detail .detail-text {
    font-size: 14px;
  }
}
@media (max-width: 575px) {
  #timer {
    padding: 20px 0;
  }
  #timer .date-box {
    margin: 8px;
    padding: 10px;
    width: 75px !important;
    height: 75px !important;
    font-size: 18px;
    border-radius: 15px !important;
  }
  #timer .date-box .text {
    font-size: 11px !important;
  }
  .nav-details form {
    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;
  }
}
@media (max-width: 480px) {
  .page-section .content-detail .detail-text {
    padding: 0 15px;
  }
  .page-section .content-detail .container-txt {
    width: 300px;
    height: 160px;
  }
  .page-section .content-detail .container-txt h1 {
    font-weight: 600;
  }
  .page-section .content-detail .container-txt .blobs_2,
.page-section .content-detail .container-txt .blobs_6 {
    display: none;
  }
  .page-section .content-detail .container-txt .blobs_3 {
    width: 60px;
    height: 60px;
    top: 87px;
    left: 47px;
  }
  .page-section .content-detail .container-txt .blobs_4 {
    width: 50px;
    height: 50px;
    top: 97px;
    left: 123px;
  }
  .page-section .content-detail .container-txt .blobs_5 {
    width: 30px;
    height: 30px;
    top: 39px;
    left: 70px;
  }
  .page-section .content-detail .container-txt .blobs_7 {
    left: 146px;
  }
  .page-section .content-detail .container-txt .sub-title {
    font-weight: 500;
    font-size: 22px;
  }
}
/*# sourceMappingURL=coming-soon-page.css.map */