@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300;400;500;600;700&display=swap');
/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: 'Quicksand', 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: "Quicksand", sans-serif;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #ff4a17;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

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

.back-to-top:hover {
  background: #000;
  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: #fff;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ff4a17;
  border-top-color: #ffe9e3;
  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;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  transition: all 0.5s;
  z-index: 997;
  padding: 1rem;
  background: #fff;
  position: relative;
}

#header.fixed-top {
  position: fixed;
  transition: all .4s ease-in-out;
}

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

#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: flex-end;
  align-items: center;
  gap: 1rem;
}

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

.social-icons a {
  color: #fff;
  font-size: 26px;
}

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

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

.down-btn:focus,
.down-btn {
  background: #EF0505;
  border: 0;
  border-radius: 8px;
  color: #FFF;
  text-align: center;
  font-family: 'Quicksand';
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 28px; /* 175% */
  padding: 15px 20px;
  transition: all .4s ease-in-out;
}

.down-btn:hover,
.down-btn:focus:hover {
  color: #fff;
  background: #000! important;
  transition: all .4s ease-in-out;
}

/*--------------------------------------------------------------
# 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: capitalize;
  color: #1F1F24;
  white-space: nowrap;
  transition: 0.3s;
  text-align: center;
  font-family: 'Quicksand';
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.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: #ff4a17;
  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: #1F1F24;
  font-weight: 600;
}

/* ============ 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%;
  height: 100%;
  background: #fff;
  background-attachment: scroll;
  /* background: url("../img/hero-bg.jpg") top center;
  background-size: cover; */
  position: relative;
  padding: 70px 20px 0;
  margin-top: 100px;
}

.hero-container {
  max-width: 1620px;
}

.hero-download-box {
  border-radius: 24px;
  background-color: #F5F5F5;
  background-image: url(../img/bg1.png), url(../img/bg.png);
  background-position: top left, 40% 100%;
  background-repeat: no-repeat;
  background-size: auto;
  width: 100%;
}

.hero-download-content {
  /* max-width: 1320px;
  width: 100%;
  margin: 0 auto; */
  padding: 60px 0 0;
}

.left-box h5 {
  color: #000;
  font-family: 'Quicksand';
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 28px; /* 140% */
  text-transform: capitalize;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}

.left-box h5 span {
  border-radius: 4px;
  background: #F00505;
  padding: 9px 1rem;
  text-align: center;
  color: #FFF;
  font-family: 'Quicksand';
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: 12px; /* 100% */
  letter-spacing: 2.4px;
  display: inline-block;
  text-transform: uppercase;
}

.left-box h1 {
  color: #000;
  font-family: 'Quicksand';
  font-size: 56px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.13; /* 113.514% */
  text-transform: capitalize;
  margin-bottom: 15px;
}

.left-box h1 span {
  color: #F00505;
  font-size: 60px;
}

.left-box p {
  color: rgba(0, 0, 0, .7);
  font-family: 'Quicksand';
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px; /* 155.556% */
  max-width: 676px;
  width: 100%;
}

.download-icon {
  margin-top: 30px;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 25px;
}

.download-icon a {
  border-radius: 10px;
}

.download-icon a:hover {
  box-shadow: 0 .5rem 1rem rgba(0,0,0,.15);
}

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

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

.section-title {
  text-align: center;
  margin-bottom: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 5px;
}

.section-title h2 {
  color: #000;
  font-family: 'Quicksand';
  font-size: 50px;
  font-style: normal;
  font-weight: 700;
  line-height: 58px; /* 116% */
  text-transform: capitalize;
  margin-bottom: 0;
}

.section-title span {
  color: #EE0505;
  font-family: 'Quicksand';
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 32px; /* 133.333% */
  text-transform: capitalize;
}


.section-title p {
  color: #000;
  text-align: center;
  font-family: 'Quicksand';
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; /* 150% */
  max-width: 570px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
}

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

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

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

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

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

.content-box span {
  color: #EE0505;
  font-family: 'Quicksand';
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 32px; /* 133.333% */
  text-transform: capitalize;
  display: block;
  margin-bottom: 1rem;
}

.content-box h2 {
  color: #000;
  font-family: 'Quicksand';
  /* font-size: 48px; */
  font-style: normal;
  font-weight: 700;
  /* line-height: 58px; */
  font-size: 34px;
  line-height: 1.4; /* 120.833% */
  text-transform: capitalize;
  margin-bottom: 1rem;
}

.about-list {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 10px;
  width: 100%;
}

.about-list h5 {
  color: #000;
  font-family: 'Quicksand';
  font-size: 22px;
  font-style: normal;
  font-weight: 600;
  line-height: 30px; /* 136.364% */
  text-transform: capitalize;
  margin-bottom: 0;
}

.content-box p {
  color: #000;
  font-family: 'Quicksand';
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 24px; /* 150% */
  margin-bottom: 18px;
}

.about-list:last-child .about-list-content p {
  margin-bottom: 0;
}


/*--------------------------------------------------------------
# Features
--------------------------------------------------------------*/
.features {
  background-color: #fff;
  background-image: url(../img/bg2.png);
  background-repeat: no-repeat;
  background-size: auto;
  background-position: top left;
  position: relative;
}

.read-more {
  color: #EE0505;
  font-family: 'Quicksand';
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 26px; /* 144.444% */
  text-decoration-line: underline;
  text-transform: capitalize;
}

.work-section {
  background: #000;
  position: relative;
  padding: 90px 20px;
}

.work-section .section-title {
  margin-bottom: 50px;
}
.work-section .section-title p,
.work-section .section-title h2 {
  color: #fff;
}

.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: 12px 0 0;
}

.right-features-box .card .card-body .card-title,
.left-features-box .card .card-body .card-title {
  color: #000;
  font-family: 'Quicksand';
  font-size: 32px;
  font-style: normal;
  font-weight: 600;
  line-height: 40px; /* 125% */
  margin-bottom: 5px;
}

.left-features-box .card .card-body p,
.right-features-box .card .card-body p {
  color: #000;
  font-family: 'Quicksand';
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; /* 150% */
  margin-bottom: 1rem;
}

.tab-box .nav-tabs {
  border: 0;
  flex-direction: column;
  gap: 16px;
}


.tab-box .nav-link {
  background: #000;
  border-radius: 8px;
  padding: 0;
  transition: 0.3s;
  color: #fff;
  display: flex;
  align-items: center;
  border: 0;
  gap: 30px;
  justify-content: flex-start;
  margin-bottom: 40px;
}

.tab-box .nav-tabs li:last-child .nav-link {
  margin-bottom: 0;
}

.tab-box .nav-link span {
  border-radius: 8px;
  border: 2px solid rgba(239, 5, 5, .5);
  background: #000;
  color: #EF0505;
  font-family: 'Quicksand';
  font-size: 28px;
  font-style: normal;
  font-weight: 700;
  line-height: 30px; /* 107.143% */
  padding: 1rem;
  max-width: 70px;
  width: 100%;
  height: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.tab-box .nav-link h4 {
  color: #FFF;
  font-family: 'Quicksand';
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.2; /* 120% */
  text-transform: capitalize;
  margin-bottom: 8px;
}

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

.tab-box .nav-link.active {
  background-color: transparent;
}


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


.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: #fff;
}

@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: 120px 20px 0;
  overflow: visible;
  background-color: #fff;
  background-image: url(../img/bg-02.png);
  background-position: right center;
  background-repeat: no-repeat;
  background-size: auto;
}

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

.contact-section .contact-form .form-label {
  color: #000;
  font-family: 'Quicksand';
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%; /* 27px */
}
.contact-section .contact-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
  font-family: 'Quicksand';
  font-size: 18px;
  font-style: normal;
  letter-spacing: .5px;
  border-radius: 8px;
}

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

.contact-section .contact-form .sent-message {
  display: none;
  color: #000;
  background: #18d26e;
  text-align: left;
  padding: 15px;
  font-weight: 600;
  font-family: 'Quicksand';
  font-size: 18px;
  font-style: normal;
  letter-spacing: .5px;
  border-radius: 8px;
}

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

.contact-section .contact-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;
}

input:-webkit-autofill,
input:-webkit-autofill:hover, 
input:-webkit-autofill:focus, 
input:-webkit-autofill:active{
    -webkit-box-shadow: 0 0 0 30px white inset !important;
    transition: background-color 5000s;
    -webkit-text-fill-color: rgba(0, 0, 0, .5) !important;
}

.contact-section .contact-form input,
.contact-section .contact-form textarea {
  border-radius: 0;
  box-shadow: none;
  color: rgba(0, 0, 0, .5);
  font-family: 'Quicksand';
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; /* 133.333% */
  border-radius: 10px;
  border: 2px solid #E0DEE0;
  background-color: #FFF;
}

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

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

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

.contact-section .contact-form button[type=submit] {
  background: #EF0505;
  border-radius: 8px;
  border: 0;
  padding: 1rem;
  max-width: 170px;
  width: 100%;
  color: #fff;
  transition: 0.4s;
  margin-top: 30px;
  text-align: center;
  font-family: 'Quicksand';
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px; /* 150% */
}

.error-text {
  margin: 10px 0;
}

.contact-section .contact-form button[type=submit]:hover {
  background: #000;
}

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

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

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

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

/* ======== get-in-touch-box ===== */
.get-in-touch-box {
  margin-top: 10px;
}

.get-in-touch-box .section-title {
  text-align: left;
  align-items: flex-start;
  justify-content: flex-start;
  margin-bottom: 30px;
  max-width: 430px;
  width: 100%;
  margin-left: 0;
}

.get-in-touch-box .section-title p {
  text-align: left;
}

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

.get-touch-box .icon-img {
  width: 60px;
  height: 60px;
  overflow: hidden;
  background-color: #000;
  border-radius: 8px;
  font-size: 25px;
  line-height: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
}

.get-touch-box .touch-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  height: 100%;
  gap: 7px;
  flex-direction: column;
}

.get-touch-box .touch-content p {
  margin-bottom: 0;
  color: #000;
  font-family: 'Quicksand';
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px; /* 144.444% */
}

.get-touch-box .touch-content h5 {
  margin-bottom: 0;
  color: #000;
  font-family: 'Quicksand';
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 32px; /* 133.333% */
}

/* ======== download-section ====== */
.download-section {
  padding: 120px 20px 120px;
  height: 100%;
  position: relative;
}

.download-box {
  background: #000;
  border-radius: 30px;
  padding: 50px 100px 0;
}
.download-app-box h2 span {
  font-weight: 700;
}
.download-app-box h2 {
  color: #FFF;
  font-family: 'Quicksand';
  font-size: 60px;
  font-style: normal;
  font-weight: 600;
  line-height: 68px;
  text-transform: capitalize;
  margin-bottom: 0;
}

.download-app-box p {
  color: #FFF;
  font-family: 'Quicksand';
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px; /* 155.556% */
  max-width: 554px;
  width: 100%;
  margin-bottom: 20px;
}

.download-app-box h5 {
  color: #FFF;
  font-family: 'Quicksand';
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px; /* 120% */
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.download-app-icon {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  gap: 25px;
  flex-wrap: wrap;
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.bredcum-section {
  /* background-image: url(../img/breadcrumb-bg.png);
  background-position: bottom center;
  background-repeat: no-repeat;
  background-size: auto; */
  background-color: rgba(245, 245, 245, 1);
  margin-top: 100px;
  padding: 40px 20px;
}

.breadcrumb-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  width: 100%;
}

.breadcrumbs h1 {
  color: #000;
  font-family: 'Quicksand';
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 0;
}

.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 {
  color: #000;
  text-align: right;
  font-family: 'Quicksand';
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.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;
  }
}

/* ======== mobile-app-section ======== */
.mobile-app-section {
  background-color: #000;
  padding: 90px 20px;
  position: relative;
}
.mobile-app-section .section-title p,
.mobile-app-section .section-title h2 {
  color: #fff;
}

.mobile-app-card {
  border-radius: 10px;
  border: 2px solid #E0DEE0;
  background: #FFF;
  padding: 20px;
  transition: all .4s ease-in-out;
  height: 100%;
}

.mobile-app-card .mobile-app-img img {
  max-width: 80px;
  width: 100%;
  height: 100%;
  min-height: 75px;
}

.mobile-app-card:hover {
  background: #EF0505;
  border-color: #EF0505;
  transition: all .4s ease-in-out;
}

.mobile-app-card .mobile-app-img .hover-img,
.mobile-app-card:hover .mobile-app-img .mobile-img {
  display: none;
  transition: all .4s ease-in-out;
}

.mobile-app-card:hover .mobile-app-img .hover-img {
  display: block;
  transition: all .4s ease-in-out;
}

.mobile-app-body {
  padding-top: 1rem;
}

.mobile-app-body h4 {
  color: #000;
  font-family: 'Quicksand';
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 1.2; /* 125% */
  margin-bottom: 5px;
  transition: all .4s ease-in-out;
}

.mobile-app-body p {
  color: rgba(0, 0, 0, .6);
  font-family: 'Quicksand';
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; /* 150% */
  margin-bottom: 1rem;
  transition: all .4s ease-in-out;
}

.mobile-app-card:hover .mobile-app-body h4,
.mobile-app-card:hover .mobile-app-body p,
.mobile-app-card:hover .mobile-app-body a {
  color: #fff;
  transition: all .4s ease-in-out;
}

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

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


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

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

.inner-section .section-title p,
.inner-content p {
  font-family: 'Quicksand';
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.4;
  text-align: justify;
  color: #1F1F24;
}

.inner-section .section-title p {
  max-width: 100%;
  width: 100%;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: rgba(245, 245, 245, 1);
  padding: 0 20px 30px;
  color: #fff;
  font-size: 14px;
}

#footer .footer-top {
  background: transparent;
  border-bottom: 2px solid rgba(0, 0, 0, .1);
  padding: 100px 0 40px 0;
}

#footer .footer-top .footer-info {
  /* margin-bottom: 30px; */
  max-width: 340px;
  width: 100%;
}

#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 {
  color: rgba(0, 0, 0, .7);
  font-family: 'Quicksand';
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px; /* 144.444% */
}

.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: #BB934F;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 0;
  border-radius: 8px;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
  background: rgba(0, 0, 0, 0.8);
  color: #fff;
  text-decoration: none;
}

#footer .footer-top h4 {
  color: #000;
  font-family: 'Quicksand';
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px; /* 100% */
  margin-bottom: 20px;
}
/* 
#footer .footer-top .footer-links {
  margin-bottom: 30px;
} */

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

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #ff5e31;
  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: 'Quicksand';
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; /* 150% */
  color: rgba(0, 0, 0, 0.7);
  text-transform: capitalize;
}

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

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

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

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

.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;
}

/* ====== faq-section ======= */
.faq-section {
  padding: 90px 20px;
  background-color: rgba(245, 245, 245, 1);
  overflow: visible;
  position: relative;
}

.faq-section::after {
  content: '';
  background-image: url(../img/bg-3.png);
  background-position: left center;
  background-repeat: no-repeat;
  background-size: auto;
  position: absolute;
  left: 0;
  bottom: -50%;
  height: 650px;
  width: 365px;
}

/* 
.faq-content {
  background-color: rgba(245, 245, 245, 1);
} */

.left-faq-contant {
  position: relative;
  z-index: 1;
}

.left-faq-contant .section-title {
  gap: 10px;
  justify-content: flex-start;
  align-items: flex-start;
  text-align: left;
  margin-bottom: 0;
}

.left-faq-contant .section-title p {
  text-align: left;
  margin-bottom: 30px;
  margin-left: 0;
}


/* Custom style */
.accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='%23333' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill-rule='evenodd' d='M8 0a1 1 0 0 1 1 1v6h6a1 1 0 1 1 0 2H9v6a1 1 0 1 1-2 0V9H1a1 1 0 0 1 0-2h6V1a1 1 0 0 1 1-1z' clip-rule='evenodd'/%3e%3c/svg%3e");
  transform: scale(.7) !important;
  width: 30px;
  height: 30px;
  background-size: 30px;
}

.accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='%23fff' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill-rule='evenodd' d='M0 8a1 1 0 0 1 1-1h14a1 1 0 1 1 0 2H1a1 1 0 0 1-1-1z' clip-rule='evenodd'/%3e%3c/svg%3e");
}

.accordion-flush .accordion-item .accordion-button:not(.collapsed),
.accordion-flush .accordion-item .accordion-button:focus,
.accordion-flush .accordion-item .accordion-button {
  background-color: #EF0505;
  box-shadow: none;
  color: #fff;
  font-size: 22px;
  align-items: flex-start;
  font-weight: 600;
}

.accordion-flush .accordion-item .accordion-button.collapsed {
  color: #000;
  font-family: 'Quicksand';
  font-size: 22px;
  font-style: normal;
  font-weight: 500;
  line-height: 30px; /* 136.364% */
}

.accordion-flush .accordion-item .accordion-button {
  border-radius: 10px 10px 0 0;
} 
.accordion-flush .accordion-item .accordion-button.collapsed {
  border-radius: 10px;
}

.accordion-flush .accordion-item {
  border-radius: 10px;
  border: 2px solid #E0DEE0;
  background: #FFF;
  margin-bottom: 20px;
}

.accordion-flush .accordion-item:last-child {
  border-bottom: 2px solid #E0DEE0;
}

.accordion-body ul li {
  color: #000;
  font-family: 'Quicksand';
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; /* 150% */
}
.accordion-body p {
  color: #000;
  font-family: 'Quicksand';
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; /* 150% */
}

.accordion-body p:last-child {
  margin-bottom: 0;
}

.accordion-body ul {
  padding: 0;
  margin: 0;
  position: relative;
}

.accordion-body ul li {
  list-style-type: none;
  margin-bottom: 10px;
}

.accordion-body ul li:last-child {
  margin-bottom: 0;
}

/* ===== */
.top-section-title {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  gap: 20px;
}

.top-section-title .section-title {
  max-width: 600px;
  width: 100%;
  text-align: left;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 12px;
}

.top-section-title .section-title p {
  text-align: left;
  margin: 0;
}

.swiper-button {
  position: absolute;
  top: 10px;
  margin-top: 0;
  border-radius: 8px;
  background: #F5F5F5;
  color: #000;
  width: 78px;
  height: 74px;
  transition: all .4s ease-in-out;
}

.swiper-button-prev {
  right: 100px;
  left: auto;
}

.swiper-button:hover {
  background: #EF0505;
  color: #fff;
}

.swiper-button-next.swiper-button-disabled, 
.swiper-button-prev.swiper-button-disabled {
  opacity: 1;
  background: rgba(245, 245, 245, .7);
  color: #000;
}

.swiper-button-next:after, 
.swiper-button-prev:after {
  font-size: 24px;
}

.swiper {
  width: 100%;
  height: 100%;
  position: static;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-widget {
  border-radius: 24px;
  border: 2px solid #E0DEE0;
  background: #FFF;
  padding: 25px;
}

.widget-content p {
  color: rgba(0, 0, 0, .6);
  font-family: 'Quicksand';
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; /* 150% */
  margin-bottom: 30px;
  text-align: left;
}

.client-info {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 20px;
  width: 100%;
  margin-bottom: 30px;
}

.client-info img {
  width: 78px;
  height: 78px;
  object-fit: cover;
  border-radius: 78px;
}

.client-info .client-name {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  gap: 5px;
  width: 100%;
  height: 100%;
}


.client-info .client-name h5 {
  color: #000;
  font-family: 'Quicksand';
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 32px; /* 133.333% */
  margin-bottom: 0;
}

.client-info .client-name p {
  color: #808080;
  font-family: 'Quicksand';
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 26px; /* 144.477% */
  margin-bottom: 0;
}

/* ======= privecy-section ======= */

.terms-section .section-title,
.privecy-section .section-title {
  gap: 30px;
  align-items: flex-start;
  justify-content: flex-start;
}

.terms-section .inner-content p,
.privecy-section .inner-content p {
  color: #000;
  font-family: 'Quicksand';
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px; /* 144.477% */
  margin-bottom: 20px;
}

.terms-section .inner-content p strong,
.privecy-section .inner-content p strong {
  font-weight: 700;
}

.terms-section .inner-content p a,
.privecy-section .inner-content p a {
  font-weight: 700;
  text-decoration: underline;
}

.terms-section .inner-content p span,
.privecy-section .inner-content p span {
  color: #EF0505;
}

.privecy-section .inner-content .list-box p {
  margin-bottom: 10px;
}

.privecy-section .inner-content .list-box ul {
  padding: 0 0 0 20px;
  margin: 0;
  position: relative;
}

.privecy-section .inner-content .list-items {
  padding: 0 0 0 20px;
  margin: 0 0 20px;
  position: relative;
}

.privecy-section .inner-content .list-box ul li {
  color: #000;
  font-family: 'Quicksand';
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 26px; /* 144.477% */
  margin-bottom: 20px;
  list-style-type: lower-alpha;
}

.terms-section .inner-content .list-items li span,
.privecy-section .inner-content .list-box ul li span {
  color: #EF0505;
}

.privecy-section .inner-content .list-box ul li .list-items {
  margin-top: 1rem;
  padding: 0 0 0 20px;
}

.privecy-section .inner-content .list-box ul li .list-items li,
.privecy-section .inner-content .list-items li {
  color: #000;
  font-family: 'Quicksand';
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 26px; /* 144.477% */
  margin-bottom: 10px;
  list-style-type: decimal;
}

.terms-section .inner-content .list-items li {
  color: #000;
  font-family: 'Quicksand';
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 26px; /* 144.477% */
  margin-bottom: 10px;
  list-style-type: disc;
}

/* ========= reg-form ====== */
.reg-form-box {
  border-radius: 10px;
  border: 1.5px solid #EAEFF4;
  background: #FFF;
  box-shadow: 0px 10px 120px 0px rgba(0, 0, 0, 0.04);
  padding: 40px 100px;
}

.reg-form-box h4 {
  color: #000;
  text-align: center;
  font-family: 'Quicksand';
  font-size: 28px;
  font-style: normal;
  font-weight: 700;
  line-height: 36px; /* 128.571% */
  text-transform: capitalize;
  max-width: 600px;
  width: 100%;
  margin: 0 auto 40px;
}

.reg-form .form-label {
  color: #000;
  font-family: 'Quicksand';
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  margin-bottom: 5px;
  line-height: 22px; /* 137.5% */ 
}
.reg-form .form-group .form-control:focus,
.reg-form .form-group .form-control {
  border-radius: 8px;
  background-color: #F5F5F5;
  color: rgba(0, 0, 0, .8);
  font-family: 'Quicksand';
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px; /* 157.143% */
  padding: 15px;
  border: 0;
  box-shadow: none;
}
.form-group button:focus,
.form-group button {
  color: #FCFCFC;
  font-family: 'Quicksand';
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 26px; /* 144.444% */
}

.form-check label {
  color: #000;
  font-family: 'Quicksand';
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px; /* 125% */
}

.form-check label a {
  color: #EF0505;
}

.form-check label a:hover {
  text-decoration: underline;
}

.form-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  width: 100%;
  flex-wrap: wrap;
}

.form-btn a {
  width: 47%;
}

.reg-modal .modal-title {
  color: #000;
  font-family: 'Quicksand';
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 20px; /* 125% */
}

.reg-modal .modal-dialog {
  max-width: 600px;
}


.reg-modal .btn-close{
    background-color: #ff4a17;
    opacity: 1;
}

.tab-mobile-img {
  max-width: 400px;
  width: 100%;
  margin: 0 auto;
}