@charset "UTF-8";
@import "https://fonts.googleapis.com/css2?family=Poppins:wght@100;300;400;500;600;700;800;900&display=swap";
body {
  position: relative;
  font-family: "Poppins", sans-serif !important;
  font-size: 14px;
  width: 100vw;
  min-height: 100vh;
  overflow-x: hidden;
}
@media (max-width: 575px) {
  body {
    padding-bottom: 44px;
  }
}

html {
  width: 100%;
  overflow-x: hidden;
}

button:focus {
  border: 0 !important;
  outline: 0 !important;
}

.btn-1 {
  background: #f66c27;
  display: inline-flex;
  align-items: center;
  padding: 6px 20px;
  min-width: 110px;
  justify-content: center;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
  text-decoration: none !important;
  cursor: pointer;
  white-space: nowrap;
  color: #fff;
  font-size: 13px;
  transition: all 200ms linear;
  border: 1px solid #f66c27;
}
.btn-1:active {
  box-shadow: none;
}
.btn-1:hover {
  background: #fff;
  color: #f66c27;
}

.hidden {
  visibility: hidden;
}

.loader {
  height: 4px;
  width: 100%;
  position: relative;
  overflow: hidden;
  background-color: #fff;
}

.loader:before {
  display: block;
  position: absolute;
  content: "";
  left: -200px;
  width: 200px;
  height: 4px;
  background-color: red;
  animation: loading 2s linear infinite;
}

@keyframes loading {
  from {
    left: -200px;
    width: 30%;
  }
  50% {
    width: 30%;
  }
  70% {
    width: 70%;
  }
  80% {
    left: 50%;
  }
  95% {
    left: 120%;
  }
  to {
    left: 100%;
  }
}
.relative {
  position: relative;
}

sup {
  color: red !important;
  font-size: 12px;
}

.navbar {
  padding-left: 4%;
  padding-right: 4%;
  margin-bottom: 30px;
}
.navbar a {
  color: #000 !important;
  font-weight: 400;
  padding-right: 16px !important;
  padding-left: 16px !important;
}
.navbar a:hover {
  color: #351f64 !important;
  text-decoration: none;
}
.navbar ul > li {
  margin-top: 8px;
}
.navbar ul > li > a {
  border: 1px solid transparent;
  display: inline-block;
  border-radius: 8px;
  padding: 6px 14px;
}
.navbar ul > li > a:hover {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  border-color: #351f64;
}
.navbar .dropdown a {
  box-shadow: none !important;
  border-color: transparent !important;
}
.navbar .dropdown .dropdown-menu {
  padding: 17px 15px;
  white-space: nowrap;
  border: 0;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}
.navbar .dropdown .dropdown-menu a {
  font-size: 14px;
  text-decoration: none !important;
}
.navbar .dropdown .dropdown-menu a:hover {
  color: #f66c27 !important;
}
.navbar .w-logo {
  display: none;
}
.navbar .navbar-brand {
  padding: 0;
}
.navbar .navbar-brand img {
  max-width: 140px;
  margin-top: -4px;
  margin-bottom: -4px;
}

.container-fluid {
  padding-left: 4%;
  padding-right: 4%;
}

.filewrap {
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
  white-space: nowrap;
}

span#filename {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 11px;
  opacity: 0.7;
}

.fileup {
  position: relative;
  color: #000;
  text-align: center;
  border-radius: 8px;
  background: #fff;
  padding: 8px 12px;
  font-size: 13px;
  margin-left: 10px;
  margin-right: 10px;
}
.fileup input {
  position: absolute;
  opacity: 0;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}

.form {
  padding-top: 100px;
  padding-left: 5%;
  padding-right: 5%;
}
.form h4 {
  display: flex;
  align-items: center;
  font-size: 21px;
  margin-bottom: 20px;
}
.form h4 img {
  max-width: 26px;
  margin-right: 14px;
}

.form-1 {
  position: relative;
  z-index: 1;
  padding-bottom: 30px;
}
@media (min-width: 991px) {
  .form-1 {
    min-height: 100vh;
    display: flex;
    align-items: center;
  }
  .form-1 form {
    min-width: 100%;
  }

  .form {
    padding-top: 0px;
  }
}
.form-1 h4 {
  color: #fff;
}
.form-1 label {
  color: #fff;
}
.form-1:after {
  content: "";
  background: #351f64;
  position: absolute;
  left: -20%;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
}

.form-control {
  font-size: 14px;
  border-radius: 0;
}

.form-control:focus {
  box-shadow: none !important;
  border-color: #ced4da !important;
}

.form-1 input, .form-1 textarea {
  border: 0px !important;
}

label {
  font-size: 13px;
  margin-top: 20px;
  margin-bottom: 4px;
}

.color-white {
  color: #fff;
}

#guide .flex {
  display: flex;
  flex-wrap: wrap;
}

.copy {
  padding: 10px 4%;
  display: flex;
  margin-top: 80px;
  align-items: center;
  justify-content: space-between;
  background: #000;
  flex-flow: row-reverse;
  color: #fff;
  border-top: 1px solid #222;
}
@media (max-width: 767px) {
  .copy {
    display: block;
    text-align: center;
  }
}
.copy div {
  display: flex;
}
@media (max-width: 767px) {
  .copy div {
    justify-content: center;
  }
}
.copy a {
  color: #fff;
  text-decoration: none !important;
}
.copy a img {
  width: 60px;
  margin-top: -4px;
}
.copy span {
  color: goldenrod;
  font-size: 18px;
}

@media (max-width: 767px) {
  .contactus form {
    margin-top: 30px;
    width: 100%;
    margin-left: 0;
  }
  .contactus form p {
    margin-bottom: 20px;
  }
}
.contactus form .flex button {
  align-self: flex-end;
  margin-top: 20px;
  margin-bottom: 20px;
}
.contactus p {
  letter-spacing: 4px;
  font-weight: 300;
}
.contactus a {
  color: #f66c27;
}

@media (min-width: 1400px) {
  .contact-f {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
  }
}
@media screen and (max-width: 1024px) and (min-width: 575px) {
  .contact-f {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
  }
}
.codeblock {
  background: #1E1E1E;
  border-radius: 4px;
  padding: 20px;
  color: #fff;
  white-space: nowrap;
  width: 100%;
  overflow-x: auto;
  margin-bottom: 20px;
}

.social {
  position: fixed;
  top: 35%;
  left: -4px;
  z-index: 5;
  background: #fff;
  border: 1px solid #f66c27;
  padding: 20px 6px 18px 18px;
  border-bottom-right-radius: 26px;
  border-top-right-radius: 26px;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
}
@media (max-width: 575px) {
  .social {
    left: 0;
    top: auto;
    bottom: 0;
    right: 0;
    display: flex;
    padding: 10px 15px 10px 140px;
    border-radius: 0;
    z-index: 5;
  }
}
.social > img {
  width: 18px;
}
@media (max-width: 575px) {
  .social > img {
    transform: rotate(-90deg);
    position: absolute;
    left: 70px;
    top: -34px;
  }
}
.social a {
  font-size: 16px;
  display: block;
  margin-top: 10px;
}
.social a img {
  width: 22px;
}
@media (max-width: 575px) {
  .social a {
    margin-top: 0;
    margin-right: 20px;
  }
}

li {
  margin-bottom: 12px;
}

.error {
  color: red;
  display: inline-block;
  margin-top: 10px;
  font-size: 13px;
}
.error:before {
  display: inline-block;
  margin-right: 6px;
  content: "";
  font-family: FontAwesome;
}

.success {
  color: green;
  display: inline-block;
  margin-top: 10px;
  font-size: 13px;
}
.success:before {
  display: inline-block;
  margin-right: 6px;
  content: "";
  font-family: FontAwesome;
}

.btn-apn img, .btn-fcm img {
  width: 22px;
  display: none;
}

.loader-overlay {
  font-size: 0;
  background: #f66c27 !important;
}
.loader-overlay img {
  display: block !important;
  margin: auto;
}

.box {
  text-align: center;
  margin: 40px auto 0px auto;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  padding: 44px 20px;
  max-width: 300px;
}
.box img {
  display: inline-flex;
  margin-bottom: 14px;
  max-width: 60px;
}

.guidwrap {
  display: flex;
  align-items: center;
  text-decoration: none !important;
  color: #222;
  background: #F8F8F8;
}
.guidwrap:hover h5 {
  color: #f66c27;
}
.guidwrap:hover p {
  color: #222;
}
@media (max-width: 767px) {
  .guidwrap {
    display: block;
  }
}
.guidwrap b {
  color: #f66c27;
}
.guidwrap h5 {
  font-size: 16px;
}
.guidwrap p {
  opacity: 0.7;
}
.guidwrap img {
  max-width: 180px;
  display: block;
  margin-right: 20px;
}
@media (max-width: 575px) {
  .guidwrap img {
    width: 100%;
    max-width: inherit;
    height: 300px;
    object-fit: cover;
    margin-bottom: 10px;
  }
}
.guidwrap span {
  align-self: flex-end;
}
.guidwrap span svg {
  width: 44px;
}

.scroll {
  position: absolute;
  bottom: 30px;
  left: 48%;
  z-index: 1;
}
.scroll img {
  width: 52px;
}
@media (max-width: 767px) {
  .scroll {
    display: none;
  }
}

button.navbar-toggler {
  background: #351f64;
  color: #fff !important;
}

.navbar-light .navbar-toggler-icon {
  filter: invert(1);
}

.dropdown:hover .dropdown-menu {
  display: block;
  margin-top: 0;
}

.dropdown:hover .dropdown-toggle:after {
  transform: rotate(-180deg);
}

.show .dropdown-toggle:after {
  transform: rotate(-180deg);
}

.branding {
  display: flex;
  position: relative;
  z-index: 2;
  justify-content: center;
  background: #000;
  color: #fff;
  align-items: center;
  padding: 8px 4%;
}
.branding a {
  color: #fff;
  border-bottom: 1px solid #0cc;
  text-decoration: none !important;
}
.branding a img {
  width: 60px;
  margin-top: -4px;
}

/*# sourceMappingURL=style.css.map */
