
/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "mark_proregular", sans-serif;
  color: #444444;
}

a {
  color: #ff4a17;
  text-decoration: none;
}

a:hover {
  color: #ff724a;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "mark_proregular", sans-serif;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: linear-gradient(90deg, #ff3131 0%, #ff3131 100%);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
  color: rgba(10, 10, 10, 1);
}

.back-to-top i {
  font-size: 24px;
  line-height: 0;
}

.back-to-top:hover {
  background: linear-gradient(90deg, #ff3131 0%, #ff3131 100%);
  color: #fff;
}

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

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: linear-gradient(90deg, #ff3131 0%, #ff3131 100%);
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #FF934E;
  border-top-color: #000;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: animate-preloader 1s linear infinite;
  animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}
@media screen and (min-width: 1400px) {
  .container-xxl {
    max-width: 1720px;
    width: 100%;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  transition: all 0.5s;
  z-index: 997;
  padding: 20px;
  position: relative;
  width: 100%;
}

#header.header-scrolled,
#header.header-inner-pages {
  background: rgba(255, 251, 244, 0.95);
  padding: 10px 20px;
  position: fixed;
}

#header .logo {
  display: inline-block;
}

#header .logo a {
  color: #fff;
}

#header .logo img {
  max-height: 68px;
}

#header.header-scrolled .logo img {
  max-height: 50px;
  transition: all 0.3s ease-in-out 0s;
}

.right-menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
}

.social-icons {
  display: flex;
  gap: 25px;
  justify-content: center;
  align-items: center;
}

.social-icons a {
  color: rgba(10, 10, 10, 1);
  font-size: 24px;
  line-height: 1;
}

.social-icons a i {
  line-height: 1;
}

.social-icons a:hover {
  color: #ff3131;
}

/* .inner-page .social-icons a,
#header.header-scrolled .social-icons a {
  color: #000;
} */

.contact-section .php-email-form button[type=submit],
.down-btn:focus,
.down-btn {
  background: linear-gradient(90deg, #ff3131 0%, #ff3131 100%);
  border-radius: 8px;
  color: #1F1F24;
  padding: 1rem 22px;
  text-align: center;
  font-family: 'mark_proregular';
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 1.4; /* 175% */
  letter-spacing: -0.16px;
  border: 0;
}

.contact-section .php-email-form button[type=submit]:hover,
.down-btn:hover,
.down-btn:focus:hover {
  color: #fff;
  background: linear-gradient(90deg, #ff3131 0%, #ff3131 100%);
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}

.navbar-nav {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar-nav li {
  position: relative;
}

.navbar-nav>li {
  white-space: nowrap;
  padding: 8px 12px;
}

.navbar-expand-lg .navbar-nav .nav-link,
.navbar-nav a,
.navbar-nav a:focus {
  display: flex;
  align-items: center;
  position: relative;
  justify-content: space-between;
  padding: 0 3px;
  text-transform: uppercase;
  color: rgba(31, 31, 36, 1);
  white-space: nowrap;
  transition: 0.3s;
  font-family: 'Inter';
  font-size: 18px;
  font-weight: 400;
  line-height: 22px;  
  text-align: center;
  letter-spacing: 0.01em;
}

.navbar-nav a i,
.navbar-nav a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar-nav>li>a:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: -6px;
  left: 0;
  background-color: #ff3131;
  visibility: hidden;
  width: 0px;
  transition: all 0.3s ease-in-out 0s;
}

.navbar-nav a:hover:before,
.navbar-nav li:hover>a:before,
.navbar-nav .active:before {
  visibility: visible;
  width: 100%;
}

.navbar-nav .nav-link.active,
.navbar-nav a:hover,
.navbar-nav .active,
.navbar-nav .active:focus,
.navbar-nav li:hover>a {
  color: rgba(31, 31, 36, 1);
  font-weight: 700;
}

/* ============ mobile view ============ */

/**
* Mobile Navigation 
*/
body.offcanvas-active{
	overflow:hidden;
}

.offcanvas-header{ display:none; }

.screen-darken{
	height: 100%;
	width:0%;
	z-index: 30;
	position: fixed;
	top: 0;
	right: 0;
	opacity:0;
	visibility:hidden;
	background-color: rgba(34, 34, 34, 0.6);
	transition:opacity .2s linear, visibility 0.2s, width 2s ease-in;
}

.screen-darken.active{
	z-index:10; 
	transition:opacity .3s ease, width 0s;
    opacity:1;
    width:100%;
    visibility:visible;
}

.navbar-brand {
    display: none;
}

.nav-btn {
  background-color: transparent;
  border: none;
}

@media all and (max-width: 992px) {
    .navbar ul {
        align-items: flex-start;
    }
    .mobile-offcanvas .nav-menu {
        display: block;
        margin-top: 20px;
    }

    #header {
      padding: 10px 20px;
    }


    .social-icons a {
      color: #000;
    }

    .navbar-nav>li {
      width: 100%;
    }

    .navbar-brand {
        display: block;
    }
      
    .offcanvas-header{ 
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .mobile-offcanvas{
        visibility: hidden;
        transform:translateX(-100%);
        border-radius:0; 
        display:block;
        position: fixed;
        top: 0; left:0;
        height: 100%;
        z-index: 1200;
        width:40%;
        overflow-y: scroll;
        overflow-x: hidden;
        background-color: #FFFBF4;
        transition: visibility .3s ease-in-out, transform .3s ease-in-out;
    }

    .mobile-offcanvas.show{
        visibility: visible;
        transform: translateX(0);
    }
    .mobile-offcanvas .container, .mobile-offcanvas .container-fluid{
        display: block;
    }
}	

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #000;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  /* .navbar ul {
    display: none;
  } */
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(4, 7, 9, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  border-radius: 10px;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #15222b;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #ff4a17;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  background-color: #fff;
  /* background: url("../img/hero-bg.jpg") top center;
  background-size: cover; */
  position: relative;
  padding: 40px 20px 0px;
}

/* #hero:before {
  content: "";
  background: rgba(13, 20, 26, 0.7);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
} */

#hero .hero-container {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: left;
}

.hero-section .row {
  gap: 20px;
}

.top-title {
  max-width: 810px;
  width: 100%;
}

#hero h1 {
  font-family: 'Inter';
  font-size: 70px;
  font-weight: 700;
  line-height: 80px;
  letter-spacing: 0.02em;
  text-align: center;
  text-transform: capitalize;
  color: rgba(10, 10, 10, 1);
}

#hero h1 span {
  font-size: 30px;
  line-height: 1.2;
  display: block;
}

#hero p {
  font-family: 'Inter';
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: 0.02em;
  text-align: center;
  color: rgba(10, 10, 10, 1);
  margin-bottom: 0;
  max-width: 650px;
  width: 100%;
  margin: 0 auto;
}

.download-content h5 {
  font-family: 'mark_proregular';
  font-style: normal;
  font-weight: 700;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #1F1F24;
  margin-bottom: 20px;
}

.download-app-icon {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 25px;
}

.project-countdown {
  margin-top: 100px;
  width: 100%;
}

.project-countdown .count-box {
  position: relative;
  width: 100%;
}

.project-countdown .count-box p {
  font-family: 'mark_proregular';
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  color: rgba(29, 29, 28, .6);
}

.count-data {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 5px;
  width: 100%;
}

.project-countdown .count-box span.plus-icon {
  line-height: 1;
  color: #191D2A;
  font-size: 32px;
  font-weight: 800;
}

.project-countdown .count-data::after {
  content: '';
  width: 2px;
  height: 38px;
  background: rgba(29, 29, 28, .2);
  position: absolute;
  right: 40px;
}

.project-countdown .award-box::after {
  background: none;
}

.project-countdown .count-box span {
  font-family: 'mark_proregular';
  font-style: normal;
  font-weight: 700;
  font-size: 38px;
  line-height: 1;
  color: #191D2A;
}

.project-countdown .count-box i {
  display: block;
  font-size: 36px;
  line-height: 1! important;
  color: #a1bdd1;
  float: left;
  line-height: 0;
}

.project-countdown .count-box a:hover {
  color: #477392;
}

.left-banner-box {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 30px;
  margin: 0 auto 30px;
}

.right-banner-box {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

@media (min-width: 1024px) {
  #hero {
    background-attachment: fixed;
  }
}

@media (max-width: 768px) {
  #hero h1 {
    font-size: 28px;
    line-height: 36px;
  }

  #hero h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }
}

.download-btn-box {
  text-align: center;
  background-image: url(../img/Banner.png);
  background-color: #fff;
  background-position: top center;
  background-repeat: no-repeat;
  background-size: 100% auto;
  border-radius: 50px;
  padding: 95px 90px 0;
  width: 100%;
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 130px 20px;
  overflow: hidden;
}

.section-bg {
  background-color: #f0f4f8;
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.about .section-title {
  margin-bottom: 50px;
}

.section-title h2 {
  font-family: 'Inter';
  font-size: 50px;
  font-weight: 700;
  line-height: 58px;
  letter-spacing: 0em;
  text-align: center;
  text-transform: capitalize;
  color: rgba(31, 31, 36, 1);
  margin-bottom: 10px;
}


.section-title p {
  font-family: 'Inter';
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0em;
  text-align: center;
  max-width: 630px;
  width: 100%;
  margin: 0 auto;
  color: rgba(71, 71, 73, .7);
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
/* .about .container {
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  padding-bottom: 15px;
} */

.about {
  background-color: #fff;
  background-image: url(../img/bg-2.png), url(../img/bg-02.png);
  background-position: left top, right bottom;
  background-repeat: no-repeat;
  background-size: auto;
  height: 100%;
}

.about-us-section {
  background-position: left 90px, right bottom;
}

.about-us-section .section-title {
  margin-bottom: 70px;
}

.about-us-section .left-img {
  position: relative;
}

.about-inner-box {
  max-width: 1170px;
  width: 100%;
  margin: 0 auto;
}

.about-inner-box .row {
  margin-bottom: 100px;
}

.about-inner-box .row:last-child {
  margin-bottom: 0;
}

.about-inner-box .row:nth-child(even) {
  flex-direction: row-reverse;
} 

.about-inner-box .row:nth-child(even) .right-box-content {
  margin-left: 0;
}

.about-us-section .left-img img {
  position: relative;
  z-index: 99;
}

.about-us-section .left-img::after {
  content: '';
  background-image: url(../img/about/shadow-img.png);
  background-position: bottom center;
  background-repeat: no-repeat;
  background-size: auto;
  position: absolute;
  left: 0;
  right: 0;
  height: 105px;
  bottom: 0;
  width: 100%;
  z-index: 100! important;
}

.right-box-content {
  max-width: 580px;
  width: 100%;
  margin-left: auto;
}

.right-box-content span {
  font-family: 'Inter';
  font-size: 20px;
  font-weight: 600;
  line-height: 28px;
  letter-spacing: 0.1em;
  text-align: left;
  color: rgba(10, 10, 10, 1);
  display: block;
  margin-bottom: 20px;
}

.right-box-content h3 {
  font-family: 'Inter';
  font-size: 42px;
  font-weight: 700;
  line-height: 52px;
  letter-spacing: 0em;
  text-align: left;
  color: rgba(10, 10, 10, 1);
  display: block;
  text-transform: capitalize;
  margin-bottom: 8px;
}

.right-box-content p {
  font-family: 'Inter';
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0em;
  text-align: left;
  color: rgba(10, 10, 10, 1);
  display: block;
  margin-bottom: 30px;
}

.content-box {
  margin-bottom: 50px;
}

.content-box:last-child {
  margin-bottom: 0;
}

.content-box h2 {
  font-family: 'mark_proregular';
  font-style: normal;
  font-weight: 700;
  font-size: 32px;
  line-height: 40px;
  text-align: left;
  color: #1F1F24;
  margin-bottom: 10px;
}

.content-box p {
  font-family: 'mark_proregular';
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #474749;
  opacity: 0.7;
}


/*--------------------------------------------------------------
# Features
--------------------------------------------------------------*/
.features {
  background-color: #fff;
  background-image: url(../img/features-bg.png);
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: center center;
  position: relative;
}

.features::before {
  content: "";
  background: rgba(71, 71, 73, .03);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

.work-section {
  background-color: rgba(10, 10, 10, 1);
  position: relative;
  padding: 100px 20px; 
}

.work-section .section-title {
  margin-bottom: 50px;
  width: 100%;
  display: flex;
  justify-content:space-between;
  align-items: center;
}

.work-section .section-title h2 {
  font-family: 'Inter';
  font-size: 50px;
  font-weight: 700;
  line-height: 60px;
  letter-spacing: 0em;
  text-align: left;
  color: rgba(255, 255, 255, 1);
  max-width: 520px;
  width: 100%;
}

.work-section .section-title p {
  color: #FFF;
  font-family: 'Inter';
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; /* 150% */
  text-align: left;
  max-width: 420px;
  width: 100%;
  margin-left: auto;
  margin-bottom: 0;
  margin-right: 0;
}
.right-features-box .card,
.left-features-box .card {
  background: transparent;
  border: none;
  margin-bottom: 80px;
}

.right-features-box {
  margin-left: 30px;
}

.right-features-box .card:last-child,
.left-features-box .card:last-child {
  margin-bottom: 0;
}


.right-features-box .card img,
.left-features-box .card img {
  width: max-content;
}

.right-features-box .card .card-body,
.left-features-box .card .card-body {
  padding: 1rem 0;
}

.right-features-box .card .card-body .card-title,
.left-features-box .card .card-body .card-title {
  font-family: 'Inter';
  font-size: 24px;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0em;
  text-align: left;
  color: rgba(10, 10, 10, 1);
  margin-bottom: 15px;
}

.left-features-box .card .card-body p,
.right-features-box .card .card-body p {
  font-family: 'Inter';
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  letter-spacing: 0em;
  text-align: left;
  color: rgba(10, 10, 10, 1);
}

.tab-box .nav-tabs {
  border: 0;
}

.tab-box .nav-link {
  border-radius: 10px;
  border: 2px solid #FFF;
  background: #0A0A0A;
  padding: 24px;
  height: 100%;
  transition: 0.3s;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 10px;
  flex-direction: column;
  color: #15222b;
}

.tab-box .nav-link span {
  background: linear-gradient(90deg, #ff3131 0%, #ff3131 100%);
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 51px;
  height: 51px;
  color: #0A0A0A;
  font-family: 'Inter';
  font-size: 30px;
  font-style: normal;
  font-weight: 600;
  line-height: 30px; /* 100% */
  letter-spacing: -0.9px;
  margin-bottom: 0;
}

.tab-box .nav-link h4 {
  color: #FFF;
  font-family: 'Inter';
  font-size: 30px;
  font-style: normal;
  font-weight: 600;
  line-height: 40px; /* 133.333% */
  margin-bottom: 8px;
}

.tab-box .nav-link p {
  color: #FFF;
  font-family: 'Inter';
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; /* 150% */
  margin-bottom: 0;
}


.tab-box .nav-link:hover,
.tab-box .nav-link.active {
  background: #ff3131;
  color: #000;
  border-color: #fff;
}


.tab-box .nav-link:hover span,
.tab-box .nav-link:hover .tab-list h4,
.tab-box .nav-link:hover .tab-list p,
.tab-box .nav-link.active span,
.tab-box .nav-link.active .tab-list h4,
.tab-box .nav-link.active .tab-list p {
  color: #0A0A0A;
}


@media (max-width: 768px) {
  .tab-box .nav-link i {
    padding: 0;
    line-height: 1;
    font-size: 36px;
  }
}

@media (max-width: 575px) {
  .tab-box .nav-link {
    padding: 15px;
  }

  .tab-box .nav-link i {
    font-size: 24px;
  }
}

.tab-content-box .tab-content {
  margin-top: 30px;
}

.tab-content-box .tab-pane h3 {
  font-weight: 600;
  font-size: 26px;
}

.tab-content-box .tab-pane ul {
  list-style: none;
  padding: 0;
}

.tab-content-box .tab-pane ul li {
  padding-bottom: 10px;
}

.tab-content-box .tab-pane ul i {
  font-size: 20px;
  padding-right: 4px;
  color: #ff4a17;
}

.tab-content-box .tab-pane p:last-child {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact-section {
  padding: 100px 20px;
  background-color: rgba(245, 245, 246, 1);
}
.contact-box {
  height: 100%;
}

.contact-box .section-title {
  margin-bottom: 50px;
  align-items: center;
}
.contact-section .section-title p,
.contact-section .section-title h2 {
  color: rgba(10, 10, 10, 1);
}

.contact-section .section-title p {
  max-width: 480px;
}

.contact-section .php-email-form .form-label {
  font-family: 'mark_proregular';
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.4;
  color: #666666;
}
.contact-section .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.contact-section .php-email-form .error-message br+br {
  margin-top: 25px;
}

.contact-section .php-email-form .sent-message {
 /* display: none;*/
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact-section .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.contact-section .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}

.contact-section .php-email-form input,
.contact-section .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-family: 'mark_proregular';
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.4;
  color: #999999;
  background: #FFFFFF;
  border: 1px solid rgba(71, 71, 73, 0.2);
  border-radius: 8px;
}

.contact-section .php-email-form input:focus,
.contact-section .php-email-form textarea:focus {
  border-color: #FDDC57;
}

.contact-section .php-email-form input {
  padding: 15px;
}

.contact-section .php-email-form textarea {
  padding: 12px 15px;
}

.contact-section .php-email-form button[type=submit] {
  max-width: 150px;
  width: 100%;
  padding: 14px;
  margin-top: 20px;
}

.contact-form-box {
  margin-bottom: 50px;
}

.contact-details-box {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 20px;
  width: 100%;
  height: 100%;
}

.contact-details-box .icons {
  background: linear-gradient(90deg, #ff3131 0%, #ff3131 100%);
  border-radius: 8px;
  max-width: 60px;
  width: 100%;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 26px;
  color: rgba(10, 10, 10, 1);
}

.inner-details span {
  font-family: 'Inter';
  font-size: 18px;
  font-weight: 400;
  line-height: 26px;
  letter-spacing: 0em;
  text-align: left;
  color: rgba(10, 10, 10, .6);
  display: block;
  margin-bottom: 7px;
}

.inner-details h4 {
  font-family: 'Inter';
  font-size: 18px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0em;
  text-align: left;
  color: rgba(10, 10, 10, 1);
  margin-bottom: 0;
}

@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* ======== download-section ====== */
.download-section {
  background-image: url(../img/bg-2.png);
  background-position: left 50px;
  background-repeat: no-repeat;
  background-size: auto;
  height: 100%;
  position: relative;
}

.download-app-box span {
  font-family: 'Inter';
  font-size: 20px;
  font-weight: 600;
  line-height: 28px;
  letter-spacing: 0.1em;
  text-align: left;
  color: rgba(10, 10, 10, 1);  
  margin-bottom: 1rem;
  display: block;
}

.download-app-box h2 {
  font-family: 'Inter';
  font-size: 42px;
  font-weight: 700;
  line-height: 52px;
  letter-spacing: 0em;
  max-width: 580px;
  width: 100%;
  text-align: left;
  color: rgba(10, 10, 10, 1); 
  margin-bottom: 10px;
}

.download-app-box p {
  font-family: 'mark_proregular';
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 26px;
  color: rgba(71, 71, 73, .7);
  max-width: 520px;
  width: 100%;
}

.download-app-box .download-content {
  margin-bottom: 40px;
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.bredcum-section {
  /* background-image: url(../img/breadcrumb-bg.png);
  background-position: bottom center;
  background-repeat: no-repeat;
  background-size: auto;
  background-color: #FFFBF4; */
  background: linear-gradient(90deg, #FDDC57 0%, #FF934E 100%);
  padding: 30px 20px;
}

.breadcrumbs h1 {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  font-size: 50px;
  line-height: 1.2;
  text-align: center;
  letter-spacing: -0.01em;
  text-transform: capitalize;
  color: #000000;
  margin-bottom: 10px;
}

.breadcrumbs ol {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
}

.breadcrumbs ol li+li {
  padding-left: 10px;
}

.breadcrumbs ol li a,
.breadcrumbs ol li {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.4;
  display: flex;
  align-items: center;
  color: #1F1F24;
}

.breadcrumbs ol li a {
  font-weight: 600;
}

.breadcrumbs ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: #263d4d;
  content: ">";
}

@media (max-width: 992px) {
  .breadcrumbs {
    margin-top: 52px;
  }

  .breadcrumbs .d-flex {
    display: block !important;
  }

  .breadcrumbs ol {
    display: block;
  }

  .breadcrumbs ol li {
    display: inline-block;
  }
}

/* ========== inner-section ========= */
.inner-section {
  padding: 60px 20px;
}

.inner-section .section-title {
  margin-bottom: 30px;
}

.inner-section .section-title h2 {
  margin-bottom: 20px;
}

.inner-content {
  margin-bottom: 40px;
}

.inner-content h4 {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.3;
  text-align: justify;
  color: #1F1F24;
  margin-bottom: 20px;
}

.inner-section .section-title p,
.inner-content p {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.4;
  text-align: justify;
  color: rgba(10, 10, 10, .6);
}

.inner-section .section-title p {
  max-width: 100%;
  width: 100%;
  margin-bottom: 20px;
}

.inner-section .section-title p:last-child {
  margin-bottom: 0;
}

.inner-content-list li a,
.inner-section .section-title a {
  color: #FF934E;
}

.inner-content-list li a:hover,
.inner-section .section-title a:hover {
  text-decoration: underline;
}

.inner-content-list {
  padding: 0 0 0 20px;
  margin: 0 0 20px;
  list-style-type: none;
}

.inner-content-list li {
  list-style: decimal;
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.5;
  text-align: justify;
  color: rgba(10, 10, 10, .6);
  margin-bottom: 10px;
}

.inner-content-list li:last-child {
  margin-bottom: 0;
}
/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: rgba(10, 10, 10, 1);
  padding: 0 20px 30px;
  color: #fff;
  font-size: 14px;
}

.footer-logo {
  max-width: 60px;
  width: 100%;
}

#footer .footer-top {
  background: rgba(10, 10, 10, 1);
  border-bottom: 2px solid rgba(255, 255, 255, .2);
  padding: 90px 0 20px 0;
}

#footer .footer-top .footer-info {
  margin-bottom: 30px;
}

#footer .footer-top .footer-info h3 {
  font-size: 28px;
  margin: 0 0 15px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
}

#footer .footer-top .footer-info p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Inter", sans-serif;
  color: #fff;
}

.social-links {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  background: linear-gradient(90deg, #ff3131 0%, #ff3131 100%);
  color: rgba(10, 10, 10, 1);
  line-height: 1;
  padding: 8px 0;
  margin-right: 0;
  border-radius: 8px;
  text-align: center;
  width: 34px;
  height: 34px;
  transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
  background: linear-gradient(90deg, #ff3131 0%, #ff3131 100%);
  color: #fff;
  text-decoration: none;
}

#footer .footer-top h4 {
  font-family: 'mark_proregular';
  font-style: normal;
  font-weight: 500;
  font-size: 24px;
  line-height: 24px;
  color: #FFFFFF;
  margin-bottom: 20px;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
}

#footer .footer-top .footer-links1 {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
  text-align: left;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #ff3131;
  font-size: 18px;
  line-height: 1;
}

#footer .footer-top .footer-links ul li {
  padding: 0px 0 10px;
  display: flex;
  align-items: center;
}

#footer .footer-top .footer-links ul li:last-child {
  padding-bottom: 0;
}

#footer .footer-top .footer-links ul a {
  transition: 0.3s;
  display: inline-block;
  font-family: 'Inter';
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0em;
  text-align: left;
  color: rgba(255, 255, 255, 1);
}

#footer .footer-top .footer-links ul a:hover {
  color: #ff3131;
}

#footer .footer-top .footer-newsletter form {
  margin-top: 30px;
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border-radius: 4px;
}

#footer .footer-top .footer-newsletter form input[type=email] {
  border: 0;
  padding: 4px;
  width: calc(100% - 110px);
}

#footer .footer-top .footer-newsletter form input[type=submit] {
  position: absolute;
  top: 0;
  right: -2px;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px;
  background: #FF934E;
  color: #fff;
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
}

#footer .footer-top .footer-newsletter form input[type=submit]:hover {
  background: #ff3131;
}

#footer .copyright {
  padding-top: 20px;
}

#footer .copyright a,
#footer .copyright p {
  text-align: center;
  font-family: 'mark_proregular';
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.6);
}

#footer .copyright a:hover {
  text-decoration: underline;
  color: #FF934E;
}

.download-app-btn {
  display: flex;
  flex-direction: column;
  gap: 15px;
  justify-content: flex-start;
}


/* ======== */
.widget-card-box {
  border: 1px solid rgba(70, 95, 126, 1);
  border-radius: 6px;
  padding: 20px;
  position: relative;
}


.widget-top-box {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
  width: 100%;
  margin-bottom: 20px;
}

.widget-top-box img {
  border-radius: 40px;
  width: 48px;
  height: 48px;
  overflow: hidden;
}

.widget-top-box h4 {
  margin-bottom: 0;
  font-weight: 700;
  font-size: 20px;
}

.widget-body p {
  height: 72px;
  overflow: hidden;
  margin-bottom: 0;
}

.widget-footer {
  border-top: 1px solid rgba(70, 95, 126, .5);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1rem;
}

.widget-footer-box button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.user-thumbs-img a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin-left: -20px;
}


.reply-form textarea {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  font-size: 16px;
  width: 100%;
  max-width: 100%;
  margin-top: 15px;
  padding: 10px;
  margin-bottom: 5px;
  border-radius: 6px;
  resize: none;
}

.menu-list {
  max-width: 150px;
  width: 100%;
  margin: 0 auto;
}



/*/ Main Content Styles /*/
.main-test{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
   /* / Full viewport height /*/
}

.thank-you-container {
    background: linear-gradient(to right, #ffeb3b, #ff9800);
   /* / Yellow-orange gradient / border-radius: 20px;*/
    padding: 50px;
    text-align: center;
    width: 100%;
    max-width: 700px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

    .thank-you-container h1 {
        font-size: 48px;
        font-weight: bold;
        color: #000;
        margin-bottom: 20px;
    }

    .thank-you-container p {
        font-size: 18px;
        color: #000;
        margin-bottom: 30px;
    }

.home-btn {
    background-color: #ffffff;
    /*/ Yellow button / color: #000;*/
    border: none;
    padding: 15px 30px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 16px;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s;
}

    .home-btn:hover {
        background-color: #e0b015;
       /* / Slightly darker yellow on hover /*/
    }

.thank-you-container .order-id {
    font-size: 20px;
    font-weight: bold;
    color: #000;
    margin-bottom: 30px;
}

/*/ Responsive Design /*/
@media (max-width: 768px) {
    
.thank-you-container
{
    padding: 30px;
}

.thank-you-container h1 {
    font-size: 36px;
}

.thank-you-container p {
    font-size: 16px;
}

.home-btn {
    padding: 10px 20px;
    font-size: 14px;
}
}