
 html {
    scroll-behavior: smooth;
}

body,
html {
    margin: 0;
    padding: 0;
    font-family: 'Hind', sans-serif;
}

* {
    box-sizing: border-box;
}

.d-grid {
    display: grid;
}

.d-flex {
    display: flex;
    display: -webkit-flex;
}

.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

button,
input,
select {
    -webkit-appearance: none;
    outline: none;
    font-family: 'Hind', sans-serif;
}
#background-video {
    object-fit: cover;
    background-position: center;
    background-size: 100%;
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
}
button,
.btn,
select {
    cursor: pointer;
}

a {
    text-decoration: none;
}

img {
    max-width: 100%;
}

ul {
    margin: 0;
    padding: 0
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin: 0;
    padding: 0
}

p {
    color: #fff;
    font-size: 16px;
    line-height: 25px;
    opacity: .9;
}

.p-relative {
    position: relative;
}

.p-absolute {
    position: absolute;
}

.p-fixed {
    position: fixed;
}

.p-sticky {
    position: sticky;
}

.btn,
button,
.actionbg,
input,textarea {
    border-radius:6px;
    -webkit-border-radius:6px;
    -moz-border-radius:6px;
    -o-border-radius:6px;
    -ms-border-radius:6px;
}

.btn:hover,
button:hover {
    transition: 0.5s ease;
    -webkit-transition: 0.5s ease;
    -o-transition: 0.5s ease;
    -ms-transition: 0.5s ease;
    -moz-transition: 0.5s ease;
}

/*-- wrapper start --*/
.wrapper {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

@media (min-width: 576px) {
    .wrapper {
        max-width: 540px;
    }
}

@media (min-width: 768px) {
    .wrapper {
        max-width: 720px;
    }
}

@media (min-width: 992px) {
    .wrapper {
        max-width: 960px;
    }
}

@media (min-width: 1200px) {
    .wrapper {
        max-width: 1140px;
    }
}

.wrapper-full {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}
.Upload{
    clear: both;
}
/*-- //wrapper start --*/
.popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
     background-color: rgba(0, 0, 0, 0.5);
    /* display: flex; */
    justify-content: center;
    align-items: center;
    z-index: 999;
  }
  input#submitBtn {
    margin-bottom: 40px;
}
#download-button{
    display:none;
}
  .popup {
    background-color: white;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
  }
  
  .loader {
    border: 4px solid #f3f3f3; /* Light grey */
    border-top: 4px solid #3498db; /* Blue */
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
    margin: 0 auto;
  }
  
  .processing-text {
    margin-top: 10px;
    font-size: 16px;
    color:#000;
  }
  
  .f-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    text-align: left;
    width: 300px;
    min-height: 20px;
    padding: 20px 40px 20px 18px;
    border-radius: 5px;
    color: rgba(255, 255, 255, 0.85);
  }
  .f-notification:hover {
    opacity: 0.9;
  }
  .f-notification:hover .f-notification-close {
    background: rgba(77, 77, 79, 0.1);
  }
  .f-notification .f-notification-title {
    font-weight: 600;
    color: #4D4D4F;
    cursor: default;
  }
  .f-notification .f-close {
    position: absolute;
    right: 15px;
    top: 20px;
    height: 20px;
    width: 20px;
    line-height: 18px;
    vertical-align: middle;
    text-align: center;
    border-radius: 20px;
    color: #4D4D4F;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.25);
  }
  .f-notification .f-close:hover {
    background: rgba(77, 77, 79, 0.2);
  }
  
  .f-notification-success {
    background: #2ecc71;
  }
  
  .f-notification-error {
    background: #e74c3c;
  }
  
  .f-notification-alert {
    background: #f1c40f;
  }
  
  .f-show {
    animation-name: animSlideElastic;
    animation-duration: 1s;
    animation-timing-function: linear;
    z-index: 9;
  }
  
  .f-hide {
    animation-name: animSlideElastic;
    animation-duration: 0.5s;
    animation-direction: reverse;
  }
  
  @keyframes animSlideElastic {
    0% {
      transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 1000, 0, 0, 1);
    }
    3.333333% {
      transform: matrix3d(1.96989, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 521.82545, 0, 0, 1);
    }
    6.666667% {
      transform: matrix3d(1.4235, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 218.3238, 0, 0, 1);
    }
    10% {
      transform: matrix3d(1.08167, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 57.59273, 0, 0, 1);
    }
    13.333333% {
      transform: matrix3d(0.99057, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, -11.12794, 0, 0, 1);
    }
    16.666667% {
      transform: matrix3d(0.98719, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, -30.40503, 0, 0, 1);
    }
    20% {
      transform: matrix3d(0.99541, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, -28.10141, 0, 0, 1);
    }
    23.333333% {
      transform: matrix3d(0.99936, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, -19.40752, 0, 0, 1);
    }
    26.666667% {
      transform: matrix3d(1.00021, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, -11.08575, 0, 0, 1);
    }
    30% {
      transform: matrix3d(1.00016, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, -5.23737, 0, 0, 1);
    }
    33.333333% {
      transform: matrix3d(1.00005, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, -1.84893, 0, 0, 1);
    }
    36.666667% {
      transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, -0.22079, 0, 0, 1);
    }
    40% {
      transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0.37284, 0, 0, 1);
    }
    43.333333% {
      transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0.46116, 0, 0, 1);
    }
    46.666667% {
      transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0.35963, 0, 0, 1);
    }
    50% {
      transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0.22487, 0, 0, 1);
    }
    53.333333% {
      transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0.11734, 0, 0, 1);
    }
    56.666667% {
      transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0.04909, 0, 0, 1);
    }
    60% {
      transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0.01295, 0, 0, 1);
    }
    63.333333% {
      transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, -0.0025, 0, 0, 1);
    }
    66.666667% {
      transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, -0.00684, 0, 0, 1);
    }
    70% {
      transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, -0.00632, 0, 0, 1);
    }
    73.333333% {
      transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, -0.00436, 0, 0, 1);
    }
    76.666667% {
      transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, -0.00249, 0, 0, 1);
    }
    80% {
      transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, -0.00118, 0, 0, 1);
    }
    83.333333% {
      transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, -0.00042, 0, 0, 1);
    }
    86.666667% {
      transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, -0.00005, 0, 0, 1);
    }
    90% {
      transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0.00008, 0, 0, 1);
    }
    93.333333% {
      transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0.0001, 0, 0, 1);
    }
    96.666667% {
      transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0.00008, 0, 0, 1);
    }
    100% {
      transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    }
  }
  
  @keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }
  
/*-- form styling --*/
.mainvide-content{
    width:100%;
    min-height:100vh;
    position: relative;
    z-index:1;
    display: grid;
    align-items: center;
  }
  .mainvide-content::before {
    /* content: ""; */
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    min-height:100%;
    /* background-color: rgb(0 0 0 / 35%); */
  }
  video,
div video {
    z-index:1!important;
  }

.workinghny-form-grid {
    position:relative;
    margin: 0 auto;
    /* display: grid; */
    grid-template-columns: 2fr 1fr;
    grid-gap:40px;
    align-items: center;
}
.workinghny-form-grid .main-hotair{
    /* max-width: 400px; */
    margin: 20px auto;
    background: #fff;
    padding: 40px 30px;
    border-radius: 6px;
    -webkit-border-radius: 6px;
    -ms-border-radius: 6px;
    -moz-border-radius: 6px;
    -o-border-radius: 6px;

}
.main-workinghny-form .logo {
    text-align: center;
}
.slot-main-comingsoon,.slot-dropcontent{
    text-align:center;
}
.slot-main-comingsoon h1 {
    font-size: 60px;
    font-weight: 700;
    color: #fff;
    margin-bottom:10px;
    line-height: 55px;
}
.slot-main-comingsoon h3 {
    font-family: 'Pacifico', cursive;
    font-size:40px;
    color: #fffffff7;
    margin-bottom: 20px;
    line-height: 60px;
    display: inline-block;
    font-weight: 400;
}
.slot-main-comingsoon p{
   color: #dee3e4;
   font-size: 16px;
}
.content-main1 h2 {
    font-size: 24px;
    font-weight: 700;
    color: #1b1c1b;
    text-align: center;
    margin-bottom: 30px;
}
.content-main1 input,.content-main1 textarea{
    outline: none;
    margin-bottom: 15px;
    font-size: 16px;
    color: #999;
    text-align: left;
    padding: 14px 20px;
    width: 100%;
    display: inline-block;
    box-sizing: border-box;
    border: none;
    outline: none;
    background: #f8f9fa;
    border: 1px solid #e8e9ea;
    transition: .3s ease;
    -webkit-transition: .3s ease;
    -moz-transition: .3s ease;
    -ms-transition: .3s ease;
    -o-transition: .3s ease;
    font-family: 'Hind', sans-serif;

}
.content-main1 textarea {
    height:90px;
}
.content-main1 input:focus,textarea:focus {
    background:transparent;
    border: 1px solid #e8501f;
}
#downloadfile{

  color: white;
}
.Upload {
    font-size: 18px;
    bottom: 10px;
    width: 170px !important;
    margin: 0 auto;
    left: 0;
    text-align: center !important;
    right: 0;
    color: #fff;
    position: absolute;
    /* width: 100%; */
    background: #e8501f !important;
    border: none !important;
    padding: 14px 14px !important;
    font-weight: 600;
    transition: .3s ease;
    -webkit-transition: .3s ease;
    -moz-transition: .3s ease;
    -ms-transition: .3s ease;
    -o-transition: .3s ease;
    display: block;
}
.download {
  font-size: 18px;
  bottom: 10px;
  width: 170px !important;
  margin: 0 auto;
  left: 0;
  text-align: center !important;
  right: 0;
  color: #fff;
  text-decoration: none;
  position: absolute;
  /* width: 100%; */
  background: #05b32d !important;
  border: none !important;
  padding: 14px 14px !important;
  font-weight: 600;
  transition: .3s ease;
  -webkit-transition: .3s ease;
  -moz-transition: .3s ease;
  -ms-transition: .3s ease;
  -o-transition: .3s ease;
  display: block;
}
.content-main1 button:hover,.drophny-subscribe-form button.btn:hover {
    background:#ad3a13;
}
p.continue {
    margin: 30px 0 20px 0;
}
.drophny-subscribe-form{
    margin-top: 25px;
    position: relative;
    display: grid;
    grid-template-columns: 4fr 1fr;
    max-width: 500px;
    margin-right: auto;
    margin-top:40px;
}
.drophny-subscribe-form input{
    font-size: 16px;
    color: #999;
    text-align: left;
    padding: 18px 20px;
    width: 100%;
    outline: none;
    background: #fff;
    border: 1px solid #e8e9ea;
    border-radius: 0;
    color: var(--font-color);
    border-top-left-radius: 6px;
    border-bottom-left-radius: 6px;
}
.drophny-subscribe-form button.btn {
    font-size: 18px;
    color: #fff;
    background: #e8501f;
    border: none;
    padding: 18px 20px;
    transition: .3s ease;
    -webkit-transition: .3s ease;
    -moz-transition: .3s ease;
    -ms-transition: .3s ease;
    -o-transition: .3s ease;
    display: inline-block;
    border-radius:6px;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    padding: 0 25px;
    font-size: 22px;
}
.social-login {
    text-align: center;
    margin-top:30px;
}
.social-login a span.fa {
    color: #1a1b1a;
    text-align: center;
    font-size: 18px;
    margin-right: 18px;
}

.social-login a span.fa:hover {
    color: #e8501f;
    transition: 0.5s ease;
    -webkit-transition: 0.5s ease;
    -o-transition: 0.5s ease;
    -ms-transition: 0.5s ease;
    -moz-transition: 0.5s ease;
}
.copyright {
    padding: 2em 0;
    position: relative;
    margin: 0 auto;
    z-index: 9;
}
.copyright p {
    text-align: center;
    font-size: 17px;
    line-height: 26px;
    color: #fff;
    opacity: 1;
}

p.copy-footer-29 a {
    color: #fff;
}

p.copy-footer-29 a:hover {
    color:#e8501f;
    transition: 0.5s ease;
    -webkit-transition: 0.5s ease;
    -o-transition: 0.5s ease;
    -ms-transition: 0.5s ease;
    -moz-transition: 0.5s ease;
}


/* -- placeholder --*/


/*-- responsive design --*/
@media (max-width:1280px) {
    .slot-main-comingsoon h1 {
        font-size: 50px;
        line-height: 60px;
    }
    .slot-main-comingsoon h3 {
        font-size: 32px;
        margin-bottom: 20px;
        line-height: 42px;
    }
}
@media (max-width:800px) {
    .workinghny-form-grid {
        top: 14%;
        margin: 0 auto;
    }
    .copyright p {
        padding:0 10px;
    }
    .workinghny-form-grid .main-hotair {
        padding: 30px;
    }
    .slot-main-comingsoon h1 {
        font-size: 42px;
        line-height: 52px;
    }
}
@media (max-width:769px) {
    .workinghny-form-grid {
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr;
        grid-gap: 30px;
        align-items: center;
    }
    .content-main1 textarea {
        height: 60px;
    }
    .slot-main-comingsoon p {
        font-size: 18px;
    }
    .drophny-subscribe-form {
        margin-top: 20px;
    }
    .content-main1 input, .content-main1 textarea,.content-main1 button,.drophny-subscribe-form input,.drophny-subscribe-form button.btn {
        padding: 12px 14px;
    }
    .content-main1 textarea {
        height: 55px;
    }
    .content-main1 h2 {
        margin-bottom: 20px;
    }
}
@media (max-width:640px) {
    .workinghny-form-grid {
        top: 10%;
        margin: 0 auto;
    }
    .workinghny-form-grid .main-hotair {
        padding:30px 20px;
    }
    .slot-main-comingsoon h1 {
        font-size:32px;
        line-height:42px;
    }
    .slot-main-comingsoon h3 {
        font-size: 20px;
        margin-bottom: 16px;
        line-height: 30px;
    }
    
}

@media (max-width:568px) {

}
@media (max-width:480px) {

}

@media (max-width:384px) {
  

}


#loader {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9;
  background: #0707074f;
  text-align: center;
  /* Add your loader animation styles here */
}
#loader img{
  margin-top: 200px;
}
/*-- //responsive design --*/
/*-- //form styling --*/