/* Navigation */
.topbar-responsive {
  background: #2c3840;
  padding: 1rem 1.5rem;
}

.topbar-responsive .topbar-responsive-logo {
  color: #fefefe;
  vertical-align: middle;
  max-width: 100px;
  width: 100%;
  display: block;
}

.topbar-responsive button{
  margin: 0;
}

.topbar-responsive .menu {
  background: #2c3840;
}

.topbar-responsive .menu li:last-of-type {
  margin-right: 0;
}

.topbar-responsive .menu a {
  color: #fefefe;
  transition: color 0.15s ease-in;
}

.topbar-responsive .menu a:hover {
  color: #c6d1d8;
}

@media screen and (max-width: 39.9375em) {
  .topbar-responsive .menu a {
    padding: 0.875rem 0;
  }
}

.topbar-responsive .menu .topbar-responsive-button {
  color: #fefefe;
  border-color: #fefefe;
  border-radius: 5000px;
  transition: color 0.15s ease-in, border-color 0.15s ease-in;
}

.topbar-responsive .menu .topbar-responsive-button:hover {
  color: #c6d1d8;
  border-color: #c6d1d8;
}

@media screen and (max-width: 39.9375em) {
  .topbar-responsive .menu .topbar-responsive-button {
    width: 100%;
    margin: 0.875rem 0;
  }
}

@media screen and (max-width: 39.9375em) {
  .topbar-responsive {
    padding: 0.75rem;
  }
  .topbar-responsive .top-bar-title {
    position: relative;
    width: 100%;
  }
  .topbar-responsive .top-bar-title span {
    position: absolute;
    right: 0;
    border: 1px solid #fefefe;
    border-radius: 5px;
    padding: 0.25rem 0.45rem;
    top: 50%;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@-webkit-keyframes slideDown {
  0% {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
  100% {
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
  }
}

@keyframes slideDown {
  0% {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
  100% {
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
  }
}

@media screen and (max-width: 39.9375em) {
  .topbar-responsive-links {
    -webkit-animation-fill-mode: both;
            animation-fill-mode: both;
    -webkit-animation-duration: 0.5s;
            animation-duration: 0.5s;
    width: 100%;
    -webkit-animation: fadeIn 1s ease-in;
            animation: fadeIn 1s ease-in;
  }
}

/* Hero */
#hero{
  background: url("../img/main.jpg") 50% no-repeat;
  background-size: cover;
  height: 60vh;
  text-align: left;
}
.under #hero{
  height: 30vh;
  text-align: center;
}
#hero .grid-container{
  display: flex;
  align-items:center;
  height: 100%;
}
.hero-section {
  padding-left: 1em;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-justify-content: start;
      -ms-flex-pack: start;
          justify-content: start;
}

.hero-section .hero-section-text {
  color: #fefefe;
  text-shadow: 1px 1px 2px #0a0a0a;
}

.work-feature-block {
  padding: 10px 0;
}

.work-feature-block-image {
  display: block;
  margin: auto;
  padding: 10px 0;
}

.work-feature-block-video{
  display: block;
  margin: auto;
  padding: 10px 10px;
  width: 100%;
  max-width: 350px;
  height: 400px;
}

/* Checker Section */
.work-feature-block{
  display: flex;
  justify-content: space-between;
}
#checker{
  padding: 100px 0;
}
#checker .title{
  font-size: 1.6em !important;
  font-weight: bold;
}
#checker .checker {
  background-color: #fff;
  width: 100%;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

#checker .checker label {
  display: block;
  margin-bottom: 6px;
  font-weight: bold;
}

#checker .checker select {
  width: 100%;
  padding: 8px 10px;
  margin-bottom: 20px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 14px;
}

#checker .dropdown {
  border-top: 1px solid #ccc;
  padding-top: 10px;
  cursor: pointer;
  user-select: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: bold;
}

#checker .dropdown-content {
  display: none;
  margin-top: 10px;
  font-size: 14px;
  color: #333;
}

#checker .arrow {
  transition: transform 0.3s ease;
}

#checker .arrow.open {
  transform: rotate(180deg);
}
#checker .currency_wrap,
#checker .check_wrap{
  position: relative;
}
#checker .currency_wrap:after,
#checker .check_wrap:after{
  content: '▼';
  display: block;
  width: 10px;
  height: 10px;
  position: absolute;
  right: 15px;
  top: 50%;
  margin-top: -16px;
  font-size: 10px;
}
#checker input.mailform{
  width: 100%;
}
#checker .button{
  width: 100%;
  border: 2px solid #fff;
  color: #fff;
  cursor: pointer;
  transition: all 0.2s ease;
}
#checker .button:hover{
  background: #000;
  color: #fff;
}
.danger-message{
  margin: 10px 5px;
  line-height: 20px;
}
.danger-message p{
  margin: 0;
}

/* Generator */
#generator{
  background-color: #3a3cc9;
  padding: 100px 0;
  color: #fff;
}
#generator .container{
  padding: 0 1em;
}
#generator h2{
  font-size: 32px;
  margin-bottom: 20px;
  color: #fff;
}
#generator button{
  max-width: 300px;
  width: 100%;
  text-align: center;
  color: #fff;
  border: 2px solid #fff;
}

#generator button::before,
#generator button::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0; left: 0;
  box-sizing: border-box;
}

#generator button::before {
  border: 2px solid #00ccff;
  z-index: 1;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease-out;
}

#generator button::after {
  border: 2px solid #00ccff;
  z-index: 1;
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.3s ease-out 0.3s;
}

#generator button:hover::before {
  transform: scaleX(1);
}

#generator button:hover::after {
  transform: scaleY(1);
}

#generator button span {
  position: relative;
  z-index: 2;
}


@media screen and (max-width:991px){
  #generator button{
    max-width: 100%;
  }
}

#generator .url-box {
  background-color: white;
  color: #fff;
  padding: 14px 18px;
  border-radius: 8px;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 20px 0;
  word-break: break-all;
}

#generator .copy-icon {
  margin-left: 10px;
  cursor: pointer;
  font-size: 18px;
}

#generator .note {
  font-weight: bold;
  margin-bottom: 20px;
}

#generator .instructions {
  font-size: 14px;
  margin-top: 30px;
  line-height: 1.6;
}
#generator .qr_wrap{
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
  max-width: 800px;
  width: 100%;
}
#generator .qr {
  margin-top: 20px;
}
#generator input,#generator button {
  font-size: 16px;
  padding: 10px;
  width: 80%;
  max-width: 500px;
  margin-top: 20px;
}
#generator #linkBox, #qr {
  display: none;
  margin-top: 20px;
}
#generator #qr {
  width: 150px;
}
#generator .copy-btn {
  cursor: pointer;
  background-color: #ffffff;
  color: #3e47c4;
  border: none;
  padding: 10px 20px;
  font-weight: bold;
}

/* Result */
#result{
  padding: 100px 0;
}
#result .timer {
  display: inline-block;
  padding: 20px 40px;
  background-color: black;
  color: white;
  font-size: 40px;
  font-weight: bold;
  border-radius: 8px;
  margin-right: 20px;
  text-align: center;
  margin-bottom: 30px;
}

#result .status {
  display: inline-block;
  padding: 20px 40px;
  background-color: #e0e0e0;
  color: #111;
  font-size: 20px;
  font-weight: bold;
  border-radius: 8px;
}
@media screen and (max-width: 991px){
  #result .timer{
    width: 100%;
  }
  #result .status{
    width: 100%;
  }
}

/* Terms and Conditions */
.under .desc{
  padding: 50px 1em;
}
.under h2{
  font-size: 1.4em;
  font-weight: bold;
  border-bottom: 1px solid #000;
  padding-bottom: 5px;
}
.under h4{
  font-size: 1.15em;
  font-weight: bold;
  margin-top: 10px;
}

/* Footer */
.marketing-site-footer {
  background: #2c3840;
  color: #fff;
}

.marketing-site-footer .marketing-site-footer-menu-social a {
  color: #fff;
}

.marketing-site-footer .column-block {
  margin-bottom: 30px;
}

.marketing-site-footer > .row {
  margin-bottom: 1rem;
}
.marketing-site-footer .footer_wrap{
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 39.9375em) {
  .marketing-site-footer .columns {
    margin-bottom: 2rem;
  }
}

.marketing-site-footer-name {
  color: #fefefe;
  margin-bottom: 1rem;
  font-size: 2rem;
}

.marketing-site-footer-title {
  color: #fefefe;
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.marketing-site-footer-block {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 1rem;
}

.marketing-site-footer-block .fa {
  font-size: 2rem;
  color: #020304;
}

.marketing-site-footer-block p {
  margin-left: 1rem;
  line-height: 1.125rem;
}

.marketing-site-footer-bottom {
  padding: 1rem 0;
}

.marketing-site-footer-bottom p,
.marketing-site-footer-bottom .menu {
  margin-bottom: 0;
}

.marketing-site-footer-bottom .marketing-site-footer-bottom-links {
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.marketing-site-footer-bottom .marketing-site-footer-bottom-links a {
  color: #8aa0ae;
}

@media screen and (max-width: 63.9375em) {
  .marketing-site-footer-bottom .marketing-site-footer-bottom-links {
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

@media screen and (max-width: 63.9375em) {
  .marketing-site-footer-bottom {
    text-align: center;
  }
}

