/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap');


/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  font-family: "DM Sans", sans-serif;
  color: #444444;
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

span {
  font-family: "LufgaMedium", serif;
  background: #4A62C6;
  background: linear-gradient(180deg, #009800 40%, #4A62C6 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

p {
  font-size: 18px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "LufgaMedium", serif;
  color: #000000;
}

h2 {
  font-size: 48px;
}

h1 {
  font-size: 50px;
}

@font-face {
  font-family: 'LufgaMedium';
  src: url('../font/LufgaMedium.ttf');
}

@font-face {
  font-family: 'LufgaBold';
  src: url('../font/LufgaBold.ttf');
}

@font-face {
  font-family: 'LufgaLight';
  src: url('../font/LufgaLight.ttf');
}


/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  color: var(--default-color);
  transition: all 0.5s;
  z-index: 997;
  background-color: transparent;
}


.header .logo img {
  max-height: 72px;
  padding: 10px 0px;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  background-color: var(--background-color);
  transition: all 0.6s ease-out;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

#preloader div {
  width: 13px;
  height: 13px;
  background-color: var(--accent-color);
  border-radius: 50%;
  animation-timing-function: cubic-bezier(0, 1, 1, 0);
  position: absolute;
  left: 50%;
}

#preloader div:nth-child(1) {
  left: calc(50% + 8px);
  animation: animate-preloader-1 0.6s infinite;
}

#preloader div:nth-child(2) {
  left: calc(50% + 8px);
  animation: animate-preloader-2 0.6s infinite;
}

#preloader div:nth-child(3) {
  left: calc(50% + 32px);
  animation: animate-preloader-2 0.6s infinite;
}

#preloader div:nth-child(4) {
  left: calc(50% + 56px);
  animation: animate-preloader-3 0.6s infinite;
}

@keyframes animate-preloader-1 {
  0% {
    transform: scale(0);
  }

  100% {
    transform: scale(1);
  }
}

@keyframes animate-preloader-3 {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(0);
  }
}

@keyframes animate-preloader-2 {
  0% {
    transform: translate(0, 0);
  }

  100% {
    transform: translate(24px, 0);
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: #329866;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(#C62127), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  padding: 60px 0;
  scroll-margin-top: 78px;
  overflow: clip;
}

section#hero .slick-dots {
  margin-bottom: 10px;
}

section#hero .slick-dots li.slick-active button:before {
  opacity: 1 !important;
  color: #ffffff !important;
}

section#hero .slick-dots li button:before {
  opacity: 1 !important;
  color: #ffffff !important;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(-10px);
  }
}

.left-arrow,
.right-arrow {
  cursor: pointer;
}

#hero {
  background-image: url(../../assets/img/Website-Banner.jpg);
  width: 100%;
  height: 110vh;
  position: relative;
  padding: 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;

}

#header {
  transition: all 0.5s;
  z-index: 997;
  height: 86px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

/*--------------------------------------------------------------
# Counter
--------------------------------------------------------------*/
h2.counter-num {
  font-size: 48px;
  margin-bottom: 15px;
  padding-bottom: 5px;
}

#counter {
  background-color: #F1F6F8;
}

@media (min-width: 992px) {
  .counter-column {
    flex: 0 0 20%;
    max-width: 20%;
  }
}

.about-main a,
.operator-main a {
  background-color: #329866;
  color: #fff;
  padding: 10px 20px;
  border-radius: 5px;
  font-size: 18px;
}

.fa-arrow-right {
  transform: rotate(-45deg);
}

#command {
  background-color: #020227;
  color: #ffff;
}

span .green-t {
  color: #06BE06;
}

.tab-pane h4 {
  color: #ffff;
}
.tab-pane p:first-child{
  font-size: 28px;
}

.nav-link  h5{
  color: #ffff;
  margin: 0;
}
.nav-pills .nav-link.active {
  background-color: #fff;
}
.nav-pills .nav-link.active h5{
  background-color: #fff;
  color: #000000;
}

.nav-link:focus,
.nav-link:hover {
  color: #ffff;
}

.hero-f-t {
  position: absolute;
  top: 0;
  bottom: 0;
  align-items: center;
  right: 0;
  left: 0;
  display: flex;
  justify-content: space-evenly;
}

.booth-box {
  padding: 0 5px;
}

.last-box p {
  border-right: none !important;
}

.booth-box p {
  margin: 0;
  color: #fff;
  border-right: 1px solid #FFFFFF66;
  padding: 0 10px;
}

.booth-main {
  justify-content: center;
  background-color: #4A62C6;
  padding: 10px;
  border-radius: 50px;
}

.tab-content {
  background: #FFFFFF1A;
  padding: 20px;
  height: 100%;
  border-left: 3px solid #329866;
  display: flex;
  align-items: center;
}

.nav-pills button {
  width: 100%;
  border-top: 5px solid #000;
  border-radius: 0px !important;
  display: flex;
  gap: 10px;
  align-items: center;
}

.nav-pills .box-icon {
  width: 58px;
  height: 58px;
  background: #FFFFFF1A;
  padding: 10px;
  border-radius: 50%;
  display: flex;
    align-items: center;
    justify-content: center;
}
.box-icon img{
  max-width: 28px;
  max-height: 28px;
}

.nav-pills .nav-link .box-icon.active {
  background: #329866;
}
.nav-link.active .box-icon{
  background-color: #329866;
}
.nav-pills {
  background: #FFFFFF1A;
}

.tab-img-text {
  gap: 10px;
  margin-top: 15px;
}

.tab-img-text p {
  margin: 0;
}

.benefits-main img {
  width: 64px;
}

.benefits-main {
  border: 1px solid #E0E0E0;
  border-radius: 30px;
  padding: 15px;
}

.benefits-main p {
  margin-bottom: 0;
  margin-top: 10px;
  font-size: 16px;
}
.benefits-main h5{
  margin-top: 10px;
}

.ironclad-main img {
  width: 48px;
}

.ironclad-main {
  gap: 10px;
}

.ourteam-main h5 {
  margin-top: 10px;
}

.ourteam-main {
  text-align: center;
}

.ourteam-main img {
  width: 200px;
}

.find-us-main {
  background-image: url(../../assets/img/Find-Us-BG.jpg);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: center;
  padding: 30px;
  border: 1px solid #BABABA;
  border-radius: 20px;
}
.find-us-main img{
  width: 80%;
}

#today {
  background-image: url(../../assets/img/Last-BG.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.today h2{
  line-height: inherit;
}
.today p{
  color: #fff;
  font-size: 24px;
}

.header-form-sec {
  padding: 30px;
  border-radius: 10px;
  background-color: #fff;
  width: 60%;
  margin: 0 auto;
}

.error {
  margin-top: 5px;
  color: red;
}

.header-form p {
  font-size: 10px;
  color: #000;
}

#today .header-form-sec {
  width: 90%;
}

.submit-text .btn-submit {
  background-color: #329866;
  border-radius: 30px;
  color: #ffff;
  padding: 10px 30px;
}

.form-control-m {
  width: 100%;
  padding: 10px;
  background-color: #F9F9F9;
  border-radius: 10px;
  border: 1px solid #E3E3E3;
}

.hero-main {
  padding-left: 100px;
}

.command-title span {
  background: #06BE06 !important;
  /* background: linear-gradient(292deg, rgba(0, 152, 0, 1) 0%, rgba(0, 152, 0, 1) 100%) !important; */
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent;
}
.command-title p{
  width: 70%;
  margin: 0 auto;
}
.counter-box p{
  font-weight: bold;
  color: #000;
}
#copy-right{
  background-color: #020227;
  color: #fff;
}
.term-policy{
  gap: 20px;
}
.term-policy a:hover{
  
  color: #06BE06;
}
.witness-video video{
  border-radius: 30px;
  width: 80%;
}

section#thank-you {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}


/* iPad Pro */
@media screen and (max-width: 1199.98px) {
  #hero {
    height: 50vh;
  }

  .hero-main {
    padding-left: 40px;
  }

  h1 {
    font-size: 36px;
  }

  h2 {
    font-size: 34px;
  }

  .welcome {
    margin: 10px 0;
    padding: 10px 0;
  }

  p,
  a {
    font-size: 16px;
    line-height: 1.3;
  }

  form {
    width: 70%;
  }

  .variant-body {
    min-height: 155px;
  }
}

/* iPad Mini */
@media screen and (max-width: 991.98px) {

  p,
  a {
    font-size: 16px;
  }

  h1 {
    font-size: 40px;
  }

  .hero-title p {
    font-size: 22px;
  }

  .booth-box p {
    font-size: 20px;
  }

  h2 {
    font-size: 30px;
  }

  section {
    padding: 30px 0;
  }

  form {
    padding: 15px;
  }

  h2.counter-num {
    font-size: 30px;
    margin-bottom: 5px;
    padding-bottom: 0px;
  }

  #hero {
    height: 80vh;
  }

  .hero-main {
    margin-top: 100px;
  }

  .booth-main {
    width: fit-content;
  }
}

/* Mobile */
@media screen and (max-width:767.98px) {
  section {
    padding: 30px 0;
  }

  form {
    padding: 15px 0;
  }

  .header-form-sec {
    width: 90%;
  }
  
  form {
    width: 100%;
  }

  h1{
    font-size: 24px;
  }
  h2 {
    font-size: 24px;
  }

  h3 {
    font-size: 18px;
  }

  p,
  a {
    font-size: 14px;
  }

  .header .logo img {
    max-height: 45px;
  }
      #hero {
        height: 160vh;
    }
    .hero-title p{
      font-size: 14px;
    }
    .form-control{
      font-size: 14px;
    }
    .btn{
      font-size: 14px;
    }
        .booth-box p{
        font-size: 12px;
    }
    .booth-box img{
      width: 20px;
    }
    .booth-main{
      margin-bottom: 15px;
    }
    .hero-main{
      margin-top: 75px;
      padding-left: 15px;
      padding-right: 15px;
    }
    .form-control-m{
      padding: 5px;
    }
    .from-box{
      margin-bottom: 10px !important;
    }

}