* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
:root {
  --primary-color: #0051A0;
  --secondary-color: #858034;
  --color-green: green;
  --form-max-width: 600px;
  --nav-height: 70px;
}
body {
  background: #fff;
  font-family:Arial, Helvetica, sans-serif;
}
/* custom scroll bar */
::-webkit-scrollbar {width: 0px !important;}
::-webkit-scrollbar-track {background: #242526;}
::-webkit-scrollbar-thumb {background: #3A3B3C;}

.animate-on-scroll {
  transition: all .8s ease;
  opacity: 0;
}
.animate-on-scroll.active {opacity: 1}

.fade-on-scroll {
  transform: translateY(40px);
}
.fade-on-scroll.active {
  transform: translateY(0);
}
.fade-right-on-scroll {
  transform: translateX(40px);
}
.fade-right-on-scroll.active {
  transform: translateX(0);
}
.fade-left-on-scroll {
  transform: translateX(-40px);
}
.fade-left-on-scroll.active {
  transform: translateX(0);
}

.zoom-on-scroll {
  transform: scale(0);
}
.zoom-on-scroll.active {
  transform: scale(1);
}

.page-load {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0,0.7);
  display: none;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  z-index: 200000;
}
.page-load.active {
  display: flex
}
.loader {
  width: 50px;
  aspect-ratio: 1;
  display: grid;
}
.loader::before,
.loader::after {    
  content:"";
  grid-area: 1/1;
  --c:no-repeat radial-gradient(farthest-side,#25b09b 92%,#0000);
  background: 
    var(--c) 50%  0, 
    var(--c) 50%  100%, 
    var(--c) 100% 50%, 
    var(--c) 0    50%;
  background-size: 12px 12px;
  animation: l12 1s infinite;
}
.loader::before {
  margin: 4px;
  filter: hue-rotate(45deg);
  background-size: 8px 8px;
  animation-timing-function: linear
}
#loader-text {
  color: #fff;
}

@keyframes l12 { 
  100%{transform: rotate(.5turn)}
}


/* ======== Navigation Bar ================== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 15px 100px;
  background: #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  height: var(--nav-height);
  z-index: 50;
}
.nav,
.nav .nav-links {
  display: flex;
  align-items: center;
}
.nav {
  justify-content: space-between;
}
a {
  
  text-decoration: none;
}
.nav .logo {
  font-size: 25px;
  font-weight: 700;
}
.nav .logo img {
  height: 30px;
  width: auto;
}
.nav .nav-links {
  column-gap: 20px;
  list-style: none;
}
.nav .nav-links a {
  transition: all 0.2s linear;
  font-size: 16px;
  font-weight: 500;
  color: #000;
  padding: 8px 20px;
}
.nav .nav-links a:hover, .nav .nav-links a.active {
  background: var(--primary-color);
  color: #fff;
}
.nav.openNav .nav-links a {
  color: #fff;
  pointer-events: none;
}
.nav.openNav .nav-links a:hover,
.nav.openNav .nav-links a.active {
  background: #eee;
  color: #000;
}

.nav .navOpenBtn,
.nav .navCloseBtn {
  display: none;
}
.nav .navOpenBtn {color:#000 !important}

/* responsive */
@media screen and (max-width: 1160px) {
  .nav {
    padding: 15px 100px;
  }
  .nav .search-box {
    right: 150px;
  }
}
@media screen and (max-width: 950px) {
  .nav {
    padding: 15px 50px;
  }
  .nav .search-box {
    right: 100px;
    max-width: 400px;
  }
}
@media screen and (max-width: 768px) {
  .nav .navOpenBtn,
  .nav .navCloseBtn {
    display: block;
  }
  .nav {
    padding: 15px 20px;
  }
  .nav .nav-links {
    position: fixed;
    top: 0;
    left: -100%;
    height: 100%;
    max-width: 280px;
    width: 100%;
    padding-top: 100px;
    row-gap: 30px;
    flex-direction: column;
    background-color: #11101d;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    z-index: 100;
  }
  .nav.openNav .nav-links {
    left: 0;
  }
  .nav .navOpenBtn {
    color: #000;
    font-size: 20px;
    cursor: pointer;
  }
  .nav .navCloseBtn {
    position: absolute;
    top: 20px;
    right: 20px;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
  }
}
button {
  border: 1px solid var(--primary-color) !important;
  outline: none !important;
  cursor: pointer;
  padding: 10px 20px;
  width: fit-content;
  min-width: 120px;
  border-radius: 5px;
}
button.btn-dark {
  background: var(--primary-color) !important;
  color: #fff !important;
}
button.btn-light {
  background: #fff !important;
  color: var(--primary-color) !important;
}
.demo-btn {
  border: none !important;
  background: none !important;
  display: flex;
  align-items: center;
  padding: 10px;
  white-space: nowrap;
}
.demo-btn:hover {
  border: 1px solid var(--primary-color) !important;
}
.demo-btn i {
  font-size: 18px !important;
  width: 32px !important;
  height: 32px !important;
  color: var(--primary-color);
  background: rgba(0, 140, 255, 0.2);
  border-radius: 50%;
  display: inline-flex;
  padding-top: 3px;
  padding-left: 3px;
  align-items: center;
  justify-content: center;
}

/* ======= Home Page =========== */
main {
  padding: 15px;
  padding-top: calc(15px + var(--nav-height));
  background: rgba(176, 201, 226, 0.1) url("/static/icons/Frame-48097889.svg") no-repeat fixed center;
  background-size: 100% 100%;
  position: relative;
}
.banner-area {
  background: #fff url('/static/icons/hero_background.svg') no-repeat fixed center;
  background-size: cover;
}
.banner {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin: auto;
  max-width: 700px;
  line-height: normal;
  padding: 80px 20px 20px 20px;
  text-align: center;
}

.banner-header {
  color: var(--primary-color);
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
}
.banner-text {
  margin-top: 20px;
  font-size: 1.3rem;
  line-height: 1.2;
  max-width: 80%;
  font-weight: 300;
}
.banner-btns {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  padding: 0px;
  margin: auto;
  margin-top: 30px;
  margin-bottom: 15px;
}
.banner-image {
  width: 95%;
  max-width: 1000px;
  margin: 0 auto;
}
.banner-image img {
  width: 100%;
  height: auto;
}

.info-area {
  background: var(--primary-color);
  color: #fff;
  padding: 100px 60px;
  margin-top: 30px;
}
@media screen and (max-width: 600px) {
  .info-area {
    padding: 50px 20px;
  }
}
.info-text {
  padding: 30px;
}
.info-text .h1 {
  font-size: 2.8rem;
  font-weight: 600;
  line-height: 1.2;
}
.info-text .w-text-graylike {
  color: rgba(255,255,255,0.4);
}
.info-img {
  position: relative;
}
.info-text p {
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  color: #ddd;
  margin-top: 20px;
}
.info-img .img-bg {
  width: 100%;
  height: auto;
}
.info-img .img-sm {
  position: absolute;
  left: 0;
  top: -20px;
  width: 50%;
  height: auto;
}

.feat-area {
  background: #fff;
  color: #000;
  padding: 50px 20px;
}
.feat-img {
  padding: 30px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.feat-img img {
  width: 100%;
  height: auto;
  padding: 5px;
  height: auto;
  border-radius: 10px;
}
.feat-text {
  padding: 20px;
}

/* Style the buttons that are used to open and close the accordion panel */
.acc-con {
  padding: 15px;
  border-bottom: 1px solid #eee;
}
.acc-con.active, .acc-con:hover {
  background-color: rgba(234, 234, 243, 0.5);
}

.accordion {
  background-color: transparent;
  color: #444;
  cursor: pointer;
  padding: 5px;
  width: 100%;
  text-align: left;
  border: none;
  outline: none;
  font-size: 15px;
  font-weight: bold;
  transition: 0.4s;
  border: none !important;
}
.accordion span {
  padding-top: 10px;
}

/* Add a background color to the button if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */

.accordion:after {
  content: '\276F'; /* Unicode character for "plus" sign (+) */
  transform: rotate(90deg);
  transition: all .3s ease;
  font-size: 8px;
  padding: 10px;
  background: #ddd;
  border-radius: 50%;
  color: #000;
  float: right;
  margin-left: 5px;
  display: flex;
  align-items: center;
}

.accordion.active:after {
  content: '\276F'; /* Unicode character for "minus" sign (-) */
  transform: rotate(-90deg);
}

/* Style the accordion panel. Note: hidden by default */
.panel {
  padding: 0 18px;
  background-color: transparent;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}
.panel p {
  padding: 10px;
  width: 80%;
  color: gray;
  min-width: 200px;
}

.accordion img {
  width: 20px;
  height: 20px;
  border-radius: 5px;
  padding: 3px;
}
.std-acc-img {background: blue;}
.sta-acc-img {background: rgb(66, 2, 119);}
.fee-acc-img {background: green;}
.exa-acc-img {background: orange;}
.att-acc-img {background: purple;}
.ai-acc-img {background: rgb(248, 237, 206);}

.why-area {
  background: #fff;
  color: #000;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  padding: 20px;
  background: #fff url('/static/icons/hero_background.svg') no-repeat fixed center;
  background-size: cover;
}
.why-con {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  max-width: 1000px;
}
.why-con .why-item {
  padding: 15px 25px;
  flex: 1 1 280px;
  min-width: 280px;
  box-sizing: border-box;
  position: relative;
  border-right: 0;
  margin-bottom: 30px;
}
.why-item::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 10px;
  height: 100%;
  background: url("/static/icons/Line_19.svg") no-repeat;
  background-size: contain;
}

.demo-area {
  background: #fff;
  color: #000;
}
.demo-con {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 600px;
  margin: auto;
  gap: 5px;
  padding: 30px 20px;
  text-align: center;
}
.demo-con p {
  max-width: 500px;
}
.demo-con video {
  width: 100%;
  height: 400px;
}
#demo-con {
  width: 100%;
  height: 400px;
  margin-top: 15px !important;
  background: #000;
}
@media screen and (max-width:500px) {
  .demo-con .h1 {
    font-size: 25px !important;
  }
}
@media screen and (max-width:400px) {
  #demo-con {
    height: 300px;
  }
}

.testimonial-area {
  background: #fff;
  color: #000;
  padding: 30px 20px;
  background: rgba(162, 212, 245, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.owl-carousel {
  max-width: 750px;
  padding: 15px;
}
.owl-carousel .item {
  background: #fff;
  text-align: center;
  border-radius: 10px;
}
.owl-nav .owl-prev,
.owl-nav .owl-next {
  background: #fff;
  color: #000;
  width: 30px;
  height: 30px;
  transition: 0.3s;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  border: 1px solid #eee;
  top: 40%;
  position: absolute;
}
.owl-nav .owl-prev:hover,
.owl-nav .owl-next:hover {
  background: var(--primary-color);
  color: #fff;
} 
.owl-nav .owl-prev {
  left: -25px;
}
.owl-nav .owl-next {
  right: -25px;
}
.owl-dots {
  text-align: center;
  margin-top: 15px;
}
.owl-dot {
  width: 8px;
  height: 8px;
  border-radius: 4px;
  margin: 5px;
  background: #ccc;
  display: inline-block;
  transition: all .3s ease;
}
.owl-dot.active {
  background: var(--primary-color);
  width: 30px;
}
.testi-img {
  width: 100%;
  height: 100%;
  background: var(--primary-color);
}
.stars {
  display: flex;
  margin-top: 10px;
  justify-content: flex-start;
  align-items: center;
  gap: 8px;
  font-size: 20px;
  color: orange;
}
.testi-text {
  padding: 20px !important;
}

.pricing-area {
  background: #fff;
  color: #000;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 15px;
}
.pricing-con {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.pricing-con .pricing-item {
  padding: 15px;
  flex: 1 1 280px;
  min-width: 280px;
  box-sizing: border-box;
  border: 1px solid #eee;
  position: relative;
  height: auto;
}
.feat-list {
  list-style-type: none;
  padding: 15px;
  margin-bottom: 30px;
}
.feat-list li {
  padding: 5px;
}

.pricing-item button {
  position: absolute;
  bottom: 0;
  width: calc(100% - 30px);
}
.news-area {
  background: rgba(162, 212, 245, 0.1);
  color: #000;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 15px;
}

.news-con {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 30px;
  margin-top: 30px;
}
.news-con .news-item {
  flex: 1 1 230px;
  min-width: 230px;
  box-sizing: border-box;
  border: 1px solid #eee;
  position: relative;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px;
  border-radius: 10px;
  background: #fff;
}
.news-item .news-img {
  width: 100%;
  height: auto;
  max-height: 300px;
  background: rgb(74, 197, 238);
}
.news-text {
  padding: 15px;

}
.transp-btn {
  padding: 5px 10px;
  color: var(--primary-color);
  background: rgba(156, 205, 245, 0.1);
  border-radius: 5px;
  outline: none !important;
  border: none !important;
  cursor: pointer;
}
.white-btn {
  padding: 10px 20px;
  color: var(--primary-color);
  background: transparent;
  border-radius: 5px;
  outline: none;
  border: 1px solid var(--primary-color);
  cursor: pointer;
  width: 150px;
}

.contact-area {
  padding: 40px 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #004A92;
}
.contact-area .row {
  max-width: 1200px !important;
}

.contact-img-con {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 30px;
  position: relative;
}
img.cont-img {
  height: 220px;
  width: 220px;
  border: 10px solid lightblue;
}
.contact-con {
  color: #fff;
  padding: 20px 30px;
  position: relative;
}

.contact-form {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  position: relative;
  margin-top: 30px;
}
.contact-form input {
  height: 50px;
  width: calc(100% - 70px) !important;
  padding: 15px;
  background: #fff;
  border: none;
  outline: none;
}
.contact-form button {
  width: 70px;
  height: 50px;
  padding: 15px;
  background: orange;
  color: #fff;
  border: none;
  outline: none;
}

footer {
  background: #002243;
  padding: 20px;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  padding-bottom: 0;
}
footer img {
  max-width: 200px;
  height: auto;
}
.footer-social {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 20px;
  margin-top: 30px;
}
.footer-social a {
  font-size: 25px !important;
  color: #fff;
}
footer > div {
  padding: 20px;
}
.copyright {
  margin-top: 70px;
}
.copyright .fa {
  font-size: 8px;
}
.footer-item {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 15px;
  max-width: 300px;
  font-size: 13px;
  margin-bottom: 20px;
}
