* {
    margin: 0;
    padding: 0;    
  }
:root{
  --primary-clr: #FF6F00;
  --secondary-clr: #101010;
  --txt-clr: #696969;
  --white-clr: #fff;  
  --black-clr: #000000;
  --blue-clr: #3085B0;
  --red-clr: #F50E0E;
  --pp-font: 'Poppins';
  --lt-font: 'Lato';
  --spacer: 35px;
}

::selection {
  background-color: #393d77;
  color: var(--white-clr);
}

/* Scrollbar css start */

::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}
 
::-webkit-scrollbar-thumb {
  background: #c1c1c1; 
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: #c1c1c1; 
}


/* Scrollbar css end */

.spacer-y {
  padding: 35px 0px;
}
h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
  font-family: var(--pp-font);
}
a {
  text-decoration: none;
}

img {
  max-width: 100%;
}

.p-relative {
  position: relative;
}
button:focus-visible , button:hover {
  outline: none !important;
}

span.error {
  font-size: 12px;
  font-weight: 300;
  font-family: var(--pp-font);
  color: #ff0000;
}
.primary-text-clr {
  color: var(--primary-clr) !important;
}

.primary-btn {
  display: inline-block;
  padding: 8px 30px;
  font-size: 13px;
  font-weight: 600;
  font-family: var(--pp-font);
  color: var(--black-clr);
  text-transform: capitalize;
  background: var(--primary-clr);
  border: 0.5px solid var(--primary-clr);
  border-radius: 50px;
  transition: all 0.2s ease-in-out;
  text-align: center;
}

header {
  padding: 25px 0px;
}
.header-flex-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
ul.menu-btn-list-blk {
  list-style: none;
  padding-left: 0px;
  margin-bottom: 0px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.lang-btn {
  border-radius: 40px;
  background: var(--primary-clr);
  font-size: 13px;
  font-weight: 600;
  font-family: var(--pp-font);
  color: var(--white-clr);
  text-transform: capitalize;
  position: relative;
  padding: 10px 18px;
  border: 1px solid var(--white-clr);
  box-shadow: 0px 4px 4px rgba(0, 0, 0, .25);
}
.language-selector-blk {
  position: relative;
}
.lang-list-blk {
  position: absolute;
  content: "";
  top: calc(100% + 5px);
  right: 0;
  width: 180px;
  max-height: 295px;
  overflow-y: auto;
  border: 1px solid #fff;
  border-radius: 15px;
  background: var(--black-clr);
  box-shadow: 0px 0px 6px rgb(0 0 0 / 15%);
  padding: 15px 10px;
  transform: scaleY(0);
  transform-origin: top;
  transition: all .2s ease-in-out;
  opacity: 0;
}
.lang-drop {
  transform: scaleY(1);
  opacity: 1;
}
.lang-item {
  padding: 4px 0px;
  border-bottom: 1px solid #1a1a1a;
}
.lang-item:first-child {
  padding: 0px 0px 4px 0px;
  border-bottom: 1px solid #1a1a1a;
}
.lang-item:last-child {
  padding: 4px 0px 0px;
  border-width: 0px;
}
.language-btn {
  width: 100%;
  border: 0px;
  background: transparent;
  font-size: 12px;
  font-weight: 400;
  font-family: var(--ub-font);
  color: #fff;
  text-align: left;
  padding: 4px 10px;
  position: relative;
  letter-spacing: 0.5px;
}
.language-btn.active {
  font-weight: 600;
  color: var(--white-clr);  
}
.language-btn:hover {
  background: #161616;
}
.language-btn.active::before {
  position: absolute;
  content: "";
  top: 50%;
  right: 10px;
  width: 15px;
  height: 15px;
  transform: translateY(-50%);
  background: url(../images/tick-mark-icon.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}



.btn-box {
  cursor: pointer;
  display: none;
  flex-direction: column;
  width: 30px;
  height: 25px;
  background: transparent;
  border: 0px;
  justify-content: space-between;
  transition: transform 0.33s ease-out;
}

.btn_bar {
  background-color: #fff;
  border-radius: 10px;
  height: 3px;
  width: 100%;
}

.btn_bar.btn_width {
  width: 50%;
}

.btn_bar.top {
  transform-origin: right;
  transition: transform 0.33s cubic-bezier(0.54, -0.81, 0.57, 0.57);
}

.btn_bar.bottom {
  align-self: flex-end;
  transform-origin: left;
  transition: transform 0.33s cubic-bezier(0.54, -0.81, 0.57, 0.57);
}

.btn-box.active {
  transform: rotate(-45deg);
}

.active .btn_bar.top {
  background-color: #fff;
  transform: rotate(-90deg) translateX(4px);
}

.active .btn_bar.bottom {
  background-color: #fff;
  transform: rotate(-90deg) translateX(-4px);
}

body {
  position: relative;
}
body::before {
  position: absolute;
  content: "";
  top: 0px;
  left: 0px;
  width: 100%;
  min-height: 945px;
  height: 100vh;
  /* background: linear-gradient(180deg,  #F35321 37%, #FDB92E 100%); */
  background: url(../images/hero-bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom;
  z-index: -1;
}
.logo-blk a {
  display: block;
}
.logo-blk img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.hero-img-blk {
  display: flex;
  justify-content: flex-end;
}
.hero-wrapper h1 {
  font-size: 42px;
  font-weight: 900;
  color: var(--white-clr);
  margin-bottom: 10px;
  text-transform: uppercase;
}
.hero-wrapper h1 span {
  font-size: 130px;
  display: block;
  line-height: 130px;
}
.hero-wrapper p {
  font-size: 15px;
  font-weight: 400;
  font-family: var(--pp-font);
  color: var(--white-clr);
  margin-bottom: 0px;
}
.hero-wrapper h3 {
  font-size: 25px;
  font-weight: 600;
  font-family: var(--pp-font);
  color: var(
  --white-clr);
  margin-bottom: 0px;
  text-transform: uppercase;
  margin-top: 22px;
}
.app-link-blk {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 10px;
}
.app-link-blk a {
  width: 203px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--white-clr);
  border-radius: 30px;
  padding: 10px 30px;
  box-shadow: 0px 0px 10px rgb(250 155 62 / 40%);
}
.app-link-blk a img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
section.about-section {
  padding: 100px 0px;
}
.about-wrapper {
  padding: 20px 20px 30px 40px;
  border-radius: 15px;
  box-shadow: 0px 2px 8px rgb(173 173 173 / 25%);
}
.about-content-wrapper h2 {
  font-size: 30px;
  font-weight: 700;
  color: var(--black-clr);
  margin-bottom: 10px;
  text-transform: uppercase;
}
.about-content-wrapper p {
  font-size: 15px;
  font-family: var(--pp-font);
  color: var(--txt-clr);
  margin-bottom: 0px;
  line-height: 30px;
}
.play-btn-blk {
  display: flex;
  justify-content: flex-end;
}
.videobtn {
  width: 475px;
  height: 445px;
  border: 0px;
  border-radius: 15px;
  position: relative;
}
.videobtn img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
}
.videobtn::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  background: rgb(242 97 50 / 28%);
  border-radius: 15px;
  transform: translate(-50%, -50%);
}
.videobtn::after {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  width: 90px;
  height: 90px;
  background: url(../images/playbtn.png);
  background-repeat: no-repeat;
  transform: translate(-50%, -50%);
}
section.stories-section {
  padding: 90px 0px;
  background: #059FCA;
}
.stories-heading {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px 45px;
  margin-bottom: 45px;
}
.stories-heading h2 {
  font-size: 30px;
  font-weight: 700;
  color: var(--black-clr);
  margin-bottom: 0px;
  text-transform: uppercase;
  text-align: center;
}
.stories-heading span.stories-logo {
  width: 175px;
  height: 110px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
span.stories-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.stories-card {
  padding: 60px 40px 64px;
  background: var(--white-clr);
  border-radius: 22px;
}
.stories-content {
  height: 272px;
  border-bottom: 1px solid #D4D4D4;
}
.stories-content p {
  font-size: 18px;
  font-family: var(--pp-font);
  color: var(--black-clr);
  margin-bottom: 0px;
  line-height: 32px;
}
.rating-blk {
  margin-top: 84px;
}

section.get-in-touch-section {
  padding: 45px 0px;
}
.get-in-touch-wrapper h2 {
  font-size: 30px;
  font-weight: 700;
  font-family: var(--pp-font);
  color: var(--black-clr);
  margin-bottom: 10px;
  text-transform: uppercase;
  text-align: left;
}
.get-in-touch-wrapper p {
  font-size: 15px;
  font-weight: 400;
  font-family: var(--pp-font);
  color: var(
  --black-clr);
  margin-bottom: 0px;
  text-align: left;
  letter-spacing: 1px;
}
.get-in-touch-form {
  margin-top: 40px;
}
.get-in-touch-form .form-control {
  padding: 12px 18px;
  border: 1px solid #000;
  border-radius: 0px;
  font-size: 15px;
  font-family: var(--pp-font);
  color: var(--black-clr);
}
.get-in-touch-form .form-control:focus {
  box-shadow: none;
}
.get-in-touch-form .form-control::placeholder {
  color: var(--black-clr);
}
.get-in-touch-form .primary-btn {
  border-radius: 5px;
  color: var(--white-clr);
  font-family: var(--pp-font);
  font-size: 14px;
  letter-spacing: 1px;
  font-weight: 500;
}
.get-touch-img {
  display: flex;
  justify-content: flex-end;
}

section.queries-section {
  padding: 90px 0px;
}

.heading h2 {
  font-size: 30px;
  font-weight: 700;
  color: var(--black-clr);
  margin-bottom: 10px;
  text-transform: uppercase;
  text-align: center;
}
.queries-social-link {
  margin: 60px 0px;
}
.queries-social-link ul {
  list-style: none;
  padding-left: 0px;
  margin-bottom: 0px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 42px;
}
.queries-social-link ul li {
  max-width: 396px;
  width: 100%;
}
.q-links {
  padding: 20px 24px;
  background: #F3F3F3;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 600;
  font-family: var(--pp-font);
  color: var(--white-clr);
  border-radius: 50px;
  transition: all 0.2s ease-in-out;
}
.queries-social-link ul li:nth-child(1) .q-links {
  background: #F46537;
}
.queries-social-link ul li:nth-child(2) .q-links {
  background: #FDB92E;
}
.queries-social-link ul li:nth-child(3) .q-links {
  background: #059FCA;
}
.queries-social-link ul li:nth-child(4) .q-links {
  background: #393D77;
}
.queries-social-link ul li:nth-child(5) .q-links {
  background: #000000;
}
.q-links:hover {
  background: #393d77;
  color: var(--white-clr);
}
.content-img-blk {
  display: flex;
  justify-content: center;
  align-items: center;
}
.content-blk p {
  font-size: 18px;
  font-family: var(--lt-font);
  color: var(--txt-clr);
  margin-bottom: 0px;
  line-height: 32px;
  text-align: justify;
}
.qoute-text {
  font-size: 26px !important;
  font-weight: 700;
  font-family: var(--lt-font);
  font-style: italic;
  color: var(--black-clr) !important;
}
.content-blk p a {
  color: var(--primary-clr);
  text-decoration: underline;
  font-family: var(--lt-font);
}

section.slider-section {
  padding: 150px 0px 150px 150px;
  background: #393D77;
}
.slider-content-wrapper {
  padding-right: 50px;
}
.slider-side-logo {
  width: 175px;
  height: 110px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 24px;
}
.slider-side-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.slider-content-wrapper h2 {
  font-size: 45px;
  font-weight: 600;
  color: var(--white-clr);
  margin-bottom: 10px;
  text-transform: uppercase;
}
.slider-content-wrapper p {
  font-size: 22px;
  font-family: var(--pp-font);
  color: var(--white-clr);
  margin-bottom: 0px;
  line-height: 32px;
}
.screenshot-img {
  width: 100%;
  height: 510px;
}
.screenshot-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.screenshot-slider .slick-slide:not(:last-child) {
  margin-right: 20px;
}
ul.slick-dots {
  position: absolute;
  content: "";
  bottom: -35px;
  left: 50%;
  transform: translateX(-50%);
  list-style: none;
  margin-bottom: 0px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 0px 10px;
  gap: 10px;
}

span.dot {
  width: 6px;
  height: 6px;
  background: #D9D9D9;
  display: inline-block;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
li.slick-active span.dot {
  width: 20px;
  background: var(--primary-clr);
}

/* footer css start */

footer {
  padding: 90px 0px 0px;
  background: var(--black-clr);
}
.footer-logo-blk {
  display: flex;
  justify-content: center;
  margin-bottom: 85px;
}
.footer-logo-blk .footer-logo {
  display: block;
  width: 237px;
  height: 255px;
}
.newsletter-blk {
  display: flex;
  justify-content: center;
  margin-bottom: 35px;
  border: 1px solid #e6e6e6;
  border-radius: 5px;
  overflow: hidden;
}
.newsletter-blk .form-control {
  padding: 15px 20px;
  border: 0px;
  border-radius: 0px;
  font-size: 14px;
  font-weight: 400;
  font-family: var(--pp-font);
  color: var(--black-clr);
  background: #f9f9f9;
}
.subscribe-btn {
  padding: 15px 20px;
  border: 0px;
  border-radius: 0px;
  font-size: 14px;
  font-weight: 400;
  font-family: var(--pp-font);
  background: var(--primary-clr);
  color: var(--white-clr);
}
.social-media-blk ul {
  list-style: none;
  padding-left: 0px;
  margin-bottom: 0px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.social-media-blk ul li :is(a , img) {
  width: 53px;
  height: 53px;
  border-radius: 8px;
  display: block;
  transition: all 0.3s ease-in-out;
}
.social-media-blk a:hover {
  transform: scale(1.1);
}
.copyright-blk {
  margin: 80px 0px 24px;
}
.copyright-blk p {
  font-size: 14px;
  font-weight: 400;
  font-family: var(--pp-font);
  color: var(--white-clr);
  margin-bottom: 0px;
  text-align: center;
  letter-spacing: 0.5px;
}

/* footer css end */

.modal-content {
  background: var(--black-clr);
}
.btn-close {
  --bs-btn-close-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/%3e%3c/svg%3e");
  opacity: 1;
}
.modal .modal-logo-blk {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 50px 0px;
}
.video-blk {
  max-width: 950px;
  margin: 0 auto 50px;
}
.modal-logo-blk {
  height: 110px;
}
.modal-logo-blk img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}


@media screen and (max-width:1200px) {
  .logo-blk {    
    height: 175px;
  }
  .hero-wrapper h1 span {
    font-size: 100px;
  }
  .hero-wrapper h1 {
    font-size: 34px;
  }
  .footer-logo-blk .footer-logo {
    width: 140px;
    height: 150px;
  }
}
@media screen and (max-width:992px) {
  .logo-blk {    
    height: 175px;
  }
  .hero-wrapper h1 span {
    font-size: 100px;
  }
  .hero-wrapper {
    margin-top: 0px;
  }
  .hero-img-blk {
    justify-content: center;
  }
  .play-btn-blk {
    justify-content: center;
  }
  .queries-social-link ul li {
    max-width: 330px;
    width: 100%;
  }
  .queries-social-link ul {
    gap: 42px 15px;
  }
}

@media screen and (max-width:768px) {
  .get-touch-img {
    justify-content: center;
    height: 350px;
  }
  .queries-social-link ul {
    justify-content: center;
  }
}

@media screen and (max-width:576px) {
  .logo-blk {
    width: 120px;
    height: 120px;
  }
  .logo-blk img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  .hero-wrapper {
    margin-top: 0px;
  }
  .hero-wrapper h1 {
    font-size: 30px;
    text-align: left;
  }
  .hero-wrapper h1 span {
    font-size: 70px;
    line-height: 80px;
  }  
  .hero-img-blk {
    justify-content: center;
    height: 450px;
  }
  .hero-wrapper p {
    text-align: left;
  }
  .app-link-blk {
    justify-content: center;
  }
  h2, .h2 {
    font-size: 24px !important;
  }
  .stories-heading {
    margin-bottom: 40px;
  }
  .content-img-blk {
    width: 100%;
    height: 270px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .content-img-blk img {
    width: 75%;
    height: 100%;
    object-fit: contain;
  }
  section.slider-section {
    padding: 50px 30px;
  }
  .slider-content-wrapper {
    padding-right: 0px;
  }
  section.get-in-touch-section {
    padding: 45px 0px;
  }
  .play-btn-blk {
    justify-content: center;
  }
  .videobtn {
    width: 275px;
    height: 245px;
  }
  .modal-logo-blk {
    height: 110px;
  }
  .stories-content {
    height: 240px;
  }
  .stories-content p {
    font-size: 16px;
    line-height: 26px;
  }
  .queries-social-link ul {
    gap: 20px;
  }
  .slider-content-wrapper p {
    font-size: 16px;
    line-height: 28px;
  }
  .footer-logo-blk .footer-logo {
    width: 140px;
    height: 150px;
  }
  .social-media-blk ul li :is(a , img) {
    width: 40px;
    height: 40px;
  }
  .subscribe-btn {
    padding: 15px 10px;
  }
}

@media screen and (max-width:420px) {
  .app-link-blk a {
    width: 150px;
    padding: 8px 18px;
    height: 45px;
  }
}
