
/*--------------------------------------------------------------
# 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: #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: #ff6a40;
  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: 20px;
}

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

#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: #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: #BB934F;
  border-radius: 8px;
  font-family: 'mark_proregular';
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 28px;
  text-align: center;
  letter-spacing: -0.01em;
  color: #fff;
  border-color: transparent;
}

.down-btn:hover,
.down-btn:focus:hover {
  color: #fff;
  background: #fd3800! important;
  border-color: #ff4a17! important;
}

/*--------------------------------------------------------------
# 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: #1F1F24;
  white-space: nowrap;
  transition: 0.3s;
  font-family: 'mark_proregular';
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.4;
  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: #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: 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%;
  height: 100vh;
  background-color: #FFFBF4;
  background-image: url(../img/hero-bg.png);
  background-position: top center;
  background-size: cover;
  background-repeat: no-repeat;
  /* background: url("../img/hero-bg.jpg") top center;
  background-size: cover; */
  position: relative;
  padding: 170px 20px 80px;
}

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

#hero .hero-container {
  /* position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0; */
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: left;
}

.top-title {
  margin-bottom: 30px;
  max-width: 850px;
  width: 100%;
}

#hero h1 {
  font-family: 'mark_proregular';
  font-style: normal;
  font-weight: 700;
  font-size: 75px;
  line-height: 90px;
  color: #1F1F24;
  text-align: left;
  margin-bottom: 30px;
}

#hero p {
  font-family: 'mark_proregular';
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 28px;
  text-align: left;
  max-width: 760px;
  width: 100%;
  color: rgba(71, 71, 73, .7);
}

.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 {
  /* max-width: 950px; */
  width: 100%;
  margin-left: auto;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  /* background-image: url(../img/bg-img.png);
  background-position: bottom left;
  background-repeat: no-repeat;
  background-size: auto 100%; */
}

.right-banner-box {
  /* background-image: url(../img/bg-1.png);
  background-position: bottom center;
  background-repeat: no-repeat;
  background-size: auto 100%; */
  height: 100%;
  position: absolute;
  right: -100px;
  /* position: relative; */
  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;
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 140px 0;
  overflow: hidden;
}

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

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

.section-title h2 {
  font-family: 'mark_proregular';
  font-style: normal;
  font-weight: 700;
  font-size: 50px;
  line-height: 58px;
  text-align: center;
  text-transform: capitalize;
  color: #1F1F24;
}


.section-title p {
  font-family: 'mark_proregular';
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 26px;
  display: flex;
  max-width: 530px;
  width: 100%;
  margin: 0 auto;
  align-items: center;
  text-align: center;
  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);
  background-position: left center;
  background-repeat: no-repeat;
  background-size: auto;
  height: 100%;
}

.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: #fff;
  background-image: url(../img/bg-3.png);
  background-repeat: no-repeat;
  background-size: auto;
  background-position: left center;
  position: relative;
  padding-bottom: 70px;
}

.work-section .section-title {
  margin-bottom: 40px;
}

.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: 'mark_proregular';
  font-style: normal;
  font-weight: 700;
  font-size: 30px;
  line-height: 1.4;
  letter-spacing: 0;
  color: #1F1F24;
  margin-bottom: 15px;
}

.left-features-box .card .card-body p,
.right-features-box .card .card-body p {
  margin-bottom: 0;
}

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


.tab-box .nav-link {
  background: #FFFFFF;
  border: 2px solid #ECF2FE;
  border-radius: 8px;
  padding: 20px 15px;
  transition: 0.3s;
  color: #15222b;
  display: flex;
  align-items: flex-start;
  gap: 15px;
  justify-content: center;
}

.tab-box .nav-link span {
  font-family: 'mark_proregular';
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.3;
  color: #646464;
}

.tab-box .nav-link h4 {
  font-family: 'mark_proregular';
  font-style: normal;
  font-weight: 700;
  font-size: 30px;
  line-height: 1.3;
  color: #1F1F24;
  margin-bottom: 8px;
}

.tab-box .nav-link p {
  font-family: 'mark_proregular';
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  color: #474749;
  margin-bottom: 0;
}


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


.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: 70px 0 0;
}
.contact-box {
  padding: 80px 0;
  background-color: rgba(71, 71, 73, .07);
  background-image: url(../img/contact-bg.png);
  background-position: bottom center;
  background-repeat: no-repeat;
  background-size: auto;
  height: 100%;
  border-radius: 20px;
}

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

.contact-section .php-email-form {
  padding: 0 80px;
}
.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: #ff4a17;
}

.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] {
  background: #BB934F;
  border-radius: 8px;
  border: 0;
  padding: 20px 15px;
  max-width: 170px;
  width: 100%;
  color: #fff;
  transition: 0.4s;
  margin-top: 20px;
  font-family: 'mark_proregular';
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.4;
}

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

@-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: right center;
  background-repeat: no-repeat;
  background-size: auto;
  height: 100%;
  position: relative;
}

.download-app-box h2 {
  font-family: 'mark_proregular';
  font-style: normal;
  font-weight: 700;
  font-size: 50px;
  line-height: 58px;
  text-transform: capitalize;
  color: #1F1F24;
  max-width: 450px;
  width: 100%;
  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-top: 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;
  padding: 120px 20px 100px;
}

.breadcrumbs h1 {
  font-family: 'mark_proregular';
  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: 20px;
}

.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: 'mark_proregular';
  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: 100px 20px;
}

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


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

.inner-content h4 {
  font-family: 'mark_proregular';
  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: 'mark_proregular';
  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: #474749;
  padding: 0 20px 30px;
  color: #fff;
  font-size: 14px;
}

#footer .footer-top {
  background: #474749;
  border-bottom: 2px solid #686868;
  padding: 100px 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: "Raleway", 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: #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(255, 255, 255, 0.08);
  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: #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: 'mark_proregular';
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: rgba(255, 255, 255, 0.7);
}

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

#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: #ff4a17;
  color: #fff;
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
}

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

#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: rgba(255, 255, 255, 1);
}

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