@charset "UTF-8";
/*
Usage
@include respond-to('md-down'){
padding: 0 10px 10px;
}
*/
/*--------------------------------------------------------------
>>> Theme Colors
--------------------------------------------------------------*/
/*--------------------------------------------------------------
>>> Base
--------------------------------------------------------------*/
body {
  font-family: "Lato", sans-serif;
  font-size: 15px;
  line-height: 26px;
  color: #444;
}

h1, h2, h3, h4 {
  font-family: "Josefin Sans", sans-serif;
}

::-moz-selection {
  background: #DB5800;
  color: #fff;
}

::selection {
  background: #DB5800;
  color: #fff;
}

/*--------------------------------------------------------------
>>> Themes
--------------------------------------------------------------*/
.section-tag {
  color: #DB5800;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 0.25rem;
  position: relative;
  display: inline-block;
}
.section-tag::after {
  content: "";
  width: 40px;
  height: 2px;
  background: #DB5800;
  display: block;
  margin: 6px auto 0;
}

.section-tag-left {
  color: #DB5800;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 0.25rem;
  position: relative;
  display: inline-block;
}
.section-tag-left::after {
  content: "";
  width: 40px;
  height: 2px;
  background: #DB5800;
  display: block;
  margin: 6px 0 0;
}

.section-title {
  font-size: 35px;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: #000;
}
@media (max-width: 768px) {
  .section-title {
    font-size: 1.9rem;
  }
}

.section-subtitle {
  color: #555;
  margin: 0 auto 60px;
  font-size: 1.05rem;
}

.hero-section {
  background: #000;
  padding: 180px 0 100px;
  color: #fff;
  position: relative;
  overflow: hidden;
}
@media (max-width: 992px) {
  .hero-section {
    text-align: center;
    padding: 130px 0 80px;
  }
}
.hero-section .hero-location {
  color: #F97821;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 15px;
  font-size: 14px;
  text-transform: uppercase;
}
.hero-section .hero-title {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.2;
}
@media (max-width: 991px) {
  .hero-section .hero-title {
    font-size: 2.4rem;
  }
}
@media (max-width: 768px) {
  .hero-section .hero-title {
    font-size: 2rem;
  }
}
.hero-section .hero-subtext {
  color: #e6e6e6;
  font-size: 1.05rem;
  margin: 1rem 0 2rem;
  max-width: 500px;
}
.hero-section .hero-image {
  max-width: 90%;
  border-radius: 12px;
  -webkit-box-shadow: 0 10px 28px rgba(0, 0, 0, 0.45);
          box-shadow: 0 10px 28px rgba(0, 0, 0, 0.45);
}
@media (max-width: 992px) {
  .hero-section .hero-image {
    max-width: 100%;
    margin-top: 50px;
  }
}

.about-section {
  padding: 100px 0;
  background: #fff;
}
@media (max-width: 992px) {
  .about-section {
    padding: 60px 0;
  }
}
.about-section .about-image {
  max-width: 572px;
  border-radius: 12px;
  -webkit-box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
          box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}
@media (max-width: 992px) {
  .about-section .about-image {
    margin-bottom: 20px;
  }
}
.about-section .about-text {
  color: #444;
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}
.about-section .about-stats .stat-box {
  margin-right: 20px;
}
.about-section .about-stats .stat-box h3 {
  font-size: 2rem;
  font-weight: 800;
  color: #DB5800;
  margin-bottom: 0.2rem;
}
.about-section .about-stats .stat-box p {
  font-weight: 600;
  margin: 0;
  font-size: 14px;
  color: #000;
}

.services-section {
  background: #f7f9fb;
  padding: 100px 0;
}
@media (max-width: 992px) {
  .services-section {
    padding: 60px 0;
  }
}
.services-section {
  /* SERVICE CARDS */
}
.services-section .service-card {
  background: #fff;
  padding: 32px;
  border-radius: 16px;
  -webkit-box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
          box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
  height: 100%;
  cursor: default;
  /* Hover behavior */
}
.services-section .service-card:hover {
  -webkit-transform: translateY(-6px);
          transform: translateY(-6px);
  -webkit-box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
          box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}
.services-section .service-card:hover .icon-box {
  background: #DB5800;
}
.services-section .service-card:hover .icon-box svg {
  color: #fff;
  stroke: #fff;
}
.services-section .service-card {
  /* ICON BOX */
}
.services-section .service-card .icon-box {
  background: rgba(219, 88, 0, 0.15);
  width: 60px;
  height: 60px;
  border-radius: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 1.25rem;
  -webkit-transition: background 0.25s ease;
  transition: background 0.25s ease;
}
.services-section .service-card .icon-box svg {
  width: 28px;
  height: 28px;
  color: #DB5800;
  stroke: #DB5800;
  -webkit-transition: color 0.25s ease;
  transition: color 0.25s ease;
}
.services-section .service-card {
  /* TITLE */
}
.services-section .service-card h4 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: #000;
}
.services-section .service-card {
  /* DESCRIPTION */
}
.services-section .service-card p {
  color: #555;
  line-height: 1.6;
  font-size: 0.95rem;
  margin: 0;
}

/* SECTION HEADING */
.why-section {
  padding: 100px 0;
  background: #fff;
}
@media (max-width: 992px) {
  .why-section {
    padding: 60px 0;
  }
}
.why-section {
  /* LEFT SIDE HEADINGS */
}
.why-section .section-tag {
  color: #DB5800;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 0.25rem;
  position: relative;
  display: inline-block;
  margin-bottom: 30px;
}
.why-section .section-tag::after {
  content: "";
  width: 40px;
  height: 2px;
  background: #DB5800;
  display: block;
  margin: 6px 0 0;
}
.why-section .section-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: #000;
  margin-bottom: 1rem;
}
@media (max-width: 768px) {
  .why-section .section-title {
    font-size: 1.9rem;
  }
}
.why-section .section-text {
  color: #555;
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 1rem;
  max-width: 520px;
}
.why-section {
  /* FEATURE CARDS */
}
.why-section .feature-card {
  background: #f7f9fb;
  padding: 24px;
  border-radius: 14px;
  -webkit-box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
          box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}
.why-section .feature-card:hover {
  -webkit-transform: translateY(-6px);
          transform: translateY(-6px);
  -webkit-box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
          box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}
.why-section .feature-card:hover .icon-box {
  background: #DB5800;
}
.why-section .feature-card:hover .icon-box svg,
.why-section .feature-card:hover .icon-box img {
  color: #fff;
  stroke: #fff;
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}
.why-section .feature-card .icon-box {
  background: rgba(219, 88, 0, 0.15);
  width: 58px;
  height: 58px;
  border-radius: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-transition: background 0.25s ease;
  transition: background 0.25s ease;
}
.why-section .feature-card .icon-box svg, .why-section .feature-card .icon-box img {
  width: 26px;
  height: 26px;
  color: #DB5800;
  stroke: #DB5800;
  -webkit-transition: 0.25s ease;
  transition: 0.25s ease;
}
.why-section .feature-card .feature-content h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 0.4rem;
}
.why-section .feature-card .feature-content p {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

.process-section {
  background: #f7f8fa;
  padding: 100px 0;
}
@media (max-width: 992px) {
  .process-section {
    padding: 60px 0;
  }
}
.process-section {
  /* ORANGE LINE BEHIND BOXES */
}
.process-section .process-wrapper {
  position: relative;
}
.process-section .process-line {
  position: absolute;
  left: 0;
  right: 0;
  top: 20%;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  height: 2px;
  max-width: 80%;
  background: #f5c09d;
  margin: 0 auto;
  z-index: 0;
}
.process-section .process-card {
  background: #fff;
  border-radius: 14px;
  padding: 40px 28px;
  position: relative;
  z-index: 1;
  -webkit-transition: -webkit-box-shadow 0.3s ease;
  transition: -webkit-box-shadow 0.3s ease;
  transition: box-shadow 0.3s ease;
  transition: box-shadow 0.3s ease, -webkit-box-shadow 0.3s ease;
}
@media (min-width: 1200px) {
  .process-section .process-card {
    max-width: 284px;
  }
}
.process-section .process-card:hover {
  -webkit-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
          box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}
.process-section .process-number {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #DB5800;
  color: #fff;
  font-size: 22px;
  font-weight: 600;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 0 25px;
}
.process-section .process-icon {
  width: 40px;
  height: 40px;
  margin: 0 0 18px;
}
.process-section .process-icon svg {
  width: 35px;
  height: 35px;
  stroke: #DB5800;
}
.process-section .process-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #000;
}
.process-section .process-desc {
  margin-bottom: 0;
}

.projects-section {
  padding: 100px 0;
}
@media (max-width: 992px) {
  .projects-section {
    padding: 60px 0;
  }
}
.projects-section .project-card {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  display: block;
}
.projects-section .project-card .project-image {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
}
.projects-section .project-card .project-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 16px;
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}
.projects-section .project-card:hover img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.projects-section .project-card .project-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.4)), to(rgba(0, 0, 0, 0)));
  background: linear-gradient(to top, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0));
  border-radius: 16px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  z-index: 5;
  height: 100%;
  width: 100%;
}
.projects-section .project-card .project-overlay .project-category {
  color: rgb(222.6, 104.7, 25.5);
  font-size: 12px;
  font-weight: 600;
  opacity: 0;
  -webkit-transform: translateY(10px);
          transform: translateY(10px);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  text-transform: uppercase;
  margin-bottom: 8px;
  display: block;
}
.projects-section .project-card .project-overlay .project-title {
  font-size: 25px;
  line-height: 26px;
  color: #fff;
  font-weight: 700;
  margin-bottom: 0px;
  opacity: 0;
  -webkit-transform: translateY(10px);
          transform: translateY(10px);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.projects-section .project-card .project-overlay .project-location {
  color: #e0e0e0;
  font-size: 0.9rem;
  opacity: 0;
  -webkit-transform: translateY(10px);
          transform: translateY(10px);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.projects-section .project-card .project-overlay__inner {
  position: absolute;
  bottom: 30px;
}
.projects-section .project-card:hover .project-overlay {
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.8)), to(rgba(0, 0, 0, 0)));
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0));
}
.projects-section .project-card:hover .project-overlay .project-category, .projects-section .project-card:hover .project-overlay .project-title, .projects-section .project-card:hover .project-overlay .project-location {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.testimonials-section {
  background: #f7f8fa;
  padding: 100px 0;
}
@media (max-width: 992px) {
  .testimonials-section {
    padding: 60px 0;
  }
}
.testimonials-section .testimonial-card {
  background: #fff;
  border-radius: 16px;
  padding: 2rem;
  border: 1px solid #ececec;
  -webkit-box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
          box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
  -webkit-transition: -webkit-box-shadow 0.3s ease;
  transition: -webkit-box-shadow 0.3s ease;
  transition: box-shadow 0.3s ease;
  transition: box-shadow 0.3s ease, -webkit-box-shadow 0.3s ease;
}
.testimonials-section .testimonial-card:hover {
  -webkit-box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
          box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}
.testimonials-section .testimonial-card .stars {
  color: #DB5800;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}
.testimonials-section .testimonial-card .testimonial-text {
  color: #333;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.2rem;
}
.testimonials-section .testimonial-card hr {
  margin: 1.2rem 0;
  border-top: 1px solid #f0f0f0;
}
.testimonials-section .testimonial-card .client-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.8rem;
}
.testimonials-section .testimonial-card .client-info .client-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #fde6d6;
  color: #DB5800;
  font-weight: 600;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 0.9rem;
}
.testimonials-section .testimonial-card .client-info .client-name {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
}
.testimonials-section .testimonial-card .client-info .client-location {
  font-size: 0.85rem;
  color: #777;
}

.contact-section {
  padding: 100px 0;
}
@media (max-width: 992px) {
  .contact-section {
    padding: 60px 0;
  }
}
.contact-section .contact-form .form-label {
  font-weight: 500;
}
.contact-section .contact-form .form-control,
.contact-section .contact-form .form-select {
  padding: 12px 16px;
  border-radius: 10px;
  border: 1px solid #e0e0e0;
  -webkit-transition: 0.25s;
  transition: 0.25s;
}
.contact-section .contact-form .form-control:focus,
.contact-section .contact-form .form-select:focus {
  border-color: #DB5800;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(249, 120, 33, 0.2);
          box-shadow: 0 0 0 0.2rem rgba(249, 120, 33, 0.2);
}
.contact-section .contact-form .contact-btn {
  background: #DB5800;
  color: #fff;
  padding: 14px 0;
  border-radius: 10px;
  font-weight: 500;
  -webkit-transition: background 0.25s;
  transition: background 0.25s;
}
.contact-section .contact-form .contact-btn:hover {
  background: rgb(193.5, 77.7534246575, 0);
}
.contact-section .info-title {
  font-size: 1.3rem;
  font-weight: 600;
}
.contact-section .info-text {
  color: #666;
  margin-bottom: 30px;
}
.contact-section .contact-info-block .info-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
}
.contact-section .contact-info-block .info-item .info-icon {
  width: 42px;
  height: 42px;
  background: #ffe7d7;
  border-radius: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #DB5800;
}
.contact-section .contact-info-block .info-item h6 {
  font-weight: 600;
  margin-bottom: 4px;
}
.contact-section .contact-info-block .info-item p {
  font-size: 0.95rem;
  color: #444;
}

/* =====| Legal |===== */
.legal-page {
  background: #fff;
  padding: 100px 0;
}
.legal-page .legal-tag {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  color: #DB5800;
  letter-spacing: 1px;
  margin-bottom: 8px;
  border-bottom: 2px solid #DB5800;
  padding-bottom: 2px;
}
.legal-page .legal-title {
  font-size: 36px;
  font-weight: 700;
  color: #111;
  margin-bottom: 40px;
}
.legal-page .legal-content {
  max-width: 800px;
  margin: 0 auto;
  font-size: 17px;
  line-height: 1.7;
  color: #444;
}
.legal-page .legal-content h2, .legal-page .legal-content h3 {
  font-size: 24px;
  font-weight: 600;
  color: #000;
  margin-top: 40px;
  margin-bottom: 14px;
}
.legal-page .legal-content p {
  margin-bottom: 18px;
}
.legal-page .legal-content ul {
  margin-left: 18px;
  margin-bottom: 20px;
}
.legal-page .legal-content ul li {
  margin-bottom: 8px;
}

.btn-autumn-primary {
  background-color: #DB5800;
  color: #fff !important;
  padding: 10px 24px;
  border-radius: 6px;
  font-weight: 600;
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
}
.btn-autumn-primary:hover {
  background-color: #F97821;
  color: #fff;
}

.btn-autumn-outline {
  border: 2px solid #DB5800;
  color: #DB5800 !important;
  padding: 10px 24px;
  border-radius: 6px;
  font-weight: 600;
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
}
.btn-autumn-outline:hover {
  background-color: #DB5800;
  color: #fff !important;
}

/* ============================
   GALLERY HERO SECTION
============================= */
.gallery-hero {
  background: #000;
  padding: 150px 0 100px;
  text-align: center;
  color: #fff;
}
.gallery-hero .gallery-hero-title {
  font-size: 52px;
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-bottom: 10px;
  color: #DB5800;
}
.gallery-hero .gallery-hero-subtitle {
  font-size: 18px;
  opacity: 0.8;
}
@media (max-width: 576px) {
  .gallery-hero {
    padding: 120px 0 50px;
  }
  .gallery-hero .gallery-hero-title {
    font-size: 38px;
  }
  .gallery-hero .gallery-hero-subtitle {
    font-size: 16px;
  }
}

/* ============================
   GALLERY SECTION
============================= */
.gallery-section {
  padding: 80px 0;
}
.gallery-section .section-tag {
  display: inline-block;
  font-size: 14px;
  letter-spacing: 1px;
  color: #DB5800;
  margin-bottom: 6px;
}
.gallery-section .section-title {
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 10px;
}
.gallery-section .section-subtitle {
  font-size: 16px;
  color: #666;
  margin-bottom: 40px;
}

/* Masonry */
.masonry-gallery {
  -webkit-column-count: 3;
     -moz-column-count: 3;
          column-count: 3;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
}
@media (max-width: 992px) {
  .masonry-gallery {
    -webkit-column-count: 2;
       -moz-column-count: 2;
            column-count: 2;
  }
}
@media (max-width: 576px) {
  .masonry-gallery {
    -webkit-column-count: 1;
       -moz-column-count: 1;
            column-count: 1;
  }
}
.masonry-gallery .masonry-item {
  display: block;
  margin-bottom: 20px;
  -webkit-column-break-inside: avoid;
     -moz-column-break-inside: avoid;
          break-inside: avoid;
  cursor: -webkit-zoom-in;
  cursor: zoom-in;
}
.masonry-gallery .masonry-item img {
  width: 100%;
  display: block;
  border-radius: 10px;
  -webkit-transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease, -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
}
.masonry-gallery .masonry-item img:hover {
  -webkit-transform: scale(1.03);
          transform: scale(1.03);
  -webkit-box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
          box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.autumn-navbar {
  background: #000;
  padding: 1rem 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.autumn-navbar .site-logo {
  max-height: 38px;
  width: auto;
}
.autumn-navbar .nav-link {
  color: #fff;
  font-weight: 500;
  padding: 10px 16px;
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
}
.autumn-navbar .nav-link:hover {
  color: #F97821;
}
.autumn-navbar .btn-autumn {
  background-color: #DB5800;
  color: #fff;
  padding: 8px 18px;
  border-radius: 6px;
  font-weight: 600;
}
.autumn-navbar .btn-autumn:hover {
  background-color: #F97821;
}
.autumn-navbar {
  /* ------------------------------ */
  /* 📱 MOBILE STYLES BELOW         */
  /* ------------------------------ */
}
@media (max-width: 991px) {
  .autumn-navbar {
    /* Mobile background: grey/transparent */
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(6px);
    /* Center menu links */
  }
  .autumn-navbar .navbar-collapse {
    text-align: center;
  }
  .autumn-navbar .nav-link {
    padding: 12px 0;
    font-size: 18px;
    display: block;
    color: #fff;
  }
  .autumn-navbar .nav-link:hover {
    color: #DB5800;
  }
  .autumn-navbar {
    /* Hide contact button */
  }
  .autumn-navbar .btn-autumn {
    display: none !important;
  }
}

.fancy-toggler {
  width: 32px;
  height: 32px;
  border: none;
  background: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 6px;
  padding: 0;
  z-index: 9999;
  outline: none !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  -webkit-tap-highlight-color: transparent;
}
.fancy-toggler:focus, .fancy-toggler:active, .fancy-toggler:focus-visible {
  outline: none !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}
.fancy-toggler .toggler-line {
  width: 28px;
  height: 3px;
  background-color: #DB5800;
  border-radius: 2px;
  -webkit-transition: all 0.35s ease;
  transition: all 0.35s ease;
}
.fancy-toggler.collapsed .top {
  -webkit-transform: translateY(0) rotate(0deg);
          transform: translateY(0) rotate(0deg);
}
.fancy-toggler.collapsed .middle {
  opacity: 1;
}
.fancy-toggler.collapsed .bottom {
  -webkit-transform: translateY(0) rotate(0deg);
          transform: translateY(0) rotate(0deg);
}
.fancy-toggler:not(.collapsed) .top {
  -webkit-transform: translateY(9px) rotate(45deg);
          transform: translateY(9px) rotate(45deg);
}
.fancy-toggler:not(.collapsed) .middle {
  opacity: 0;
}
.fancy-toggler:not(.collapsed) .bottom {
  -webkit-transform: translateY(-9px) rotate(-45deg);
          transform: translateY(-9px) rotate(-45deg);
}

/* ===========================
   CTA SECTION
=========================== */
.cta-section {
  background: #1a1a1a;
  padding: 80px 0 70px;
}
.cta-section .cta-title {
  font-size: 2.2rem;
  color: #fff;
  font-weight: 700;
  margin-bottom: 10px;
}
.cta-section .cta-subtitle {
  color: #ccc;
  font-size: 1.05rem;
  margin-bottom: 35px;
}
.cta-section .cta-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (max-width: 992px) {
  .cta-section .cta-buttons {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.cta-section .cta-buttons .cta-primary {
  background: #DB5800;
  color: #fff;
  padding: 14px 28px;
  border-radius: 10px;
  font-weight: 500;
  -webkit-transition: 0.25s;
  transition: 0.25s;
}
.cta-section .cta-buttons .cta-primary:hover {
  background: rgb(193.5, 77.7534246575, 0);
}
.cta-section .cta-buttons .cta-outline {
  border: 2px solid #fff;
  padding: 14px 28px;
  border-radius: 10px;
  color: #fff;
  font-weight: 500;
  -webkit-transition: 0.25s;
  transition: 0.25s;
}
.cta-section .cta-buttons .cta-outline:hover {
  background: #fff;
  color: #000;
}

/* ===========================
   FOOTER
=========================== */
.site-footer {
  background: #121212;
  padding: 80px 0 40px;
  color: #ccc;
}
.site-footer .footer-brand {
  font-size: 1.7rem;
  color: #fff;
  font-weight: 700;
}
.site-footer .footer-brand span {
  color: #DB5800;
}
.site-footer .footer-desc {
  margin-top: 15px;
  line-height: 1.6;
  color: #aaa;
}
.site-footer .footer-heading {
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 18px;
  font-weight: 600;
}
.site-footer .footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.site-footer .footer-links li {
  margin-bottom: 10px;
}
.site-footer .footer-links li a {
  color: #ccc;
  text-decoration: none;
  -webkit-transition: 0.25s;
  transition: 0.25s;
}
.site-footer .footer-links li a:hover {
  color: #DB5800;
}
.site-footer .footer-contact .contact-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  color: #ccc;
}
.site-footer .footer-contact .contact-item .icon {
  color: #DB5800;
  font-size: 1.2rem;
}
.site-footer .footer-divider {
  border-color: #2a2a2a;
  margin: 40px 0 25px;
}
.site-footer .footer-bottom {
  color: #aaa;
}
.site-footer .footer-bottom a {
  color: #aaa;
  margin-left: 20px;
  text-decoration: none;
}
.site-footer .footer-bottom a:hover {
  color: #DB5800;
}

/* =====| Margins |===== */
.mb-10 {
  margin-bottom: 10px !important;
}

.mt-10 {
  margin-top: 10px !important;
}

.mb-15 {
  margin-bottom: 15px !important;
}

.mt-15 {
  margin-top: 15px !important;
}

.mb-20 {
  margin-bottom: 20px !important;
}

.mt-20 {
  margin-top: 20px !important;
}

.mb-30 {
  margin-bottom: 30px !important;
}

.mt-30 {
  margin-top: 30px !important;
}

.mb-40 {
  margin-bottom: 40px !important;
}

.mt-40 {
  margin-top: 40px !important;
}

.mb-50 {
  margin-bottom: 50px !important;
}

.mt-50 {
  margin-top: 50px !important;
}

.mb-60 {
  margin-bottom: 60px !important;
}

.mt-60 {
  margin-top: 60px !important;
}

.mb-70 {
  margin-bottom: 70px !important;
}

.mt-70 {
  margin-top: 70px !important;
}

.mb-80 {
  margin-bottom: 80px !important;
}

.mt-80 {
  margin-top: 80px !important;
}

.mb-100 {
  margin-bottom: 100px !important;
}

.mt-100 {
  margin-top: 100px !important;
}

/* =====| Responsive  Margins |===== */
.mb-120-50 {
  margin-bottom: 120px !important;
}
@media (max-width: 992px) {
  .mb-120-50 {
    margin-bottom: 50px !important;
  }
}

.mt-120-50 {
  margin-top: 120px;
}
@media (max-width: 992px) {
  .mt-120-50 {
    margin-top: 50px;
  }
}

.mb-120-70 {
  margin-bottom: 120px !important;
}
@media (max-width: 992px) {
  .mb-120-70 {
    margin-bottom: 70px !important;
  }
}

.mt-120-70 {
  margin-top: 120px;
}
@media (max-width: 992px) {
  .mt-120-70 {
    margin-top: 70px;
  }
}

.mb-100-50 {
  margin-bottom: 100px !important;
}
@media (max-width: 992px) {
  .mb-100-50 {
    margin-bottom: 50px !important;
  }
}

.mt-100-50 {
  margin-top: 100px;
}
@media (max-width: 992px) {
  .mt-100-50 {
    margin-top: 50px;
  }
}

.mb-100-70 {
  margin-bottom: 100px !important;
}
@media (max-width: 992px) {
  .mb-100-70 {
    margin-bottom: 70px !important;
  }
}

.mt-100-70 {
  margin-top: 100px;
}
@media (max-width: 992px) {
  .mt-100-70 {
    margin-top: 70px;
  }
}

.mb-80-50 {
  margin-bottom: 80px !important;
}
@media (max-width: 992px) {
  .mb-80-50 {
    margin-bottom: 50px !important;
  }
}

.mt-80-50 {
  margin-top: 80px;
}
@media (max-width: 992px) {
  .mt-80-50 {
    margin-top: 50px;
  }
}

.mb-80-70 {
  margin-bottom: 80px !important;
}
@media (max-width: 992px) {
  .mb-80-70 {
    margin-bottom: 70px !important;
  }
}

.mt-80-70 {
  margin-top: 80px;
}
@media (max-width: 992px) {
  .mt-80-70 {
    margin-top: 70px;
  }
}

.mb-70-50 {
  margin-bottom: 70px !important;
}
@media (max-width: 992px) {
  .mb-70-50 {
    margin-bottom: 50px !important;
  }
}

.mt-70-50 {
  margin-top: 70px;
}
@media (max-width: 992px) {
  .mt-70-50 {
    margin-top: 50px;
  }
}

.mb-60-10 {
  margin-bottom: 60px !important;
}
@media (max-width: 992px) {
  .mb-60-10 {
    margin-bottom: 10px !important;
  }
}

.mt-60-10 {
  margin-top: 60px;
}
@media (max-width: 992px) {
  .mt-60-10 {
    margin-top: 10px;
  }
}

.mb-50-0 {
  margin-bottom: 50px !important;
}
@media (max-width: 992px) {
  .mb-50-0 {
    margin-bottom: 0px !important;
  }
}

.mt-50-0 {
  margin-top: 50px;
}
@media (max-width: 992px) {
  .mt-50-0 {
    margin-top: 0px;
  }
}

.mb-30-0 {
  margin-bottom: 30px !important;
}
@media (max-width: 992px) {
  .mb-30-0 {
    margin-bottom: 0px !important;
  }
}

.mt-30-0 {
  margin-top: 30px;
}
@media (max-width: 992px) {
  .mt-30-0 {
    margin-top: 0px;
  }
}

.py-80 {
  padding: 80px 0;
}

.pt-60 {
  padding-top: 60px;
}

.bb-none {
  border-bottom: none;
}

/* =====| Display Utilities |===== */
@media (max-width: 1200px) {
  .xl-up-only {
    display: none;
  }
}

@media (min-width: 1200px) {
  .xl-down-only {
    display: none;
  }
}

@media (max-width: 992px) {
  .lg-up-only {
    display: none;
  }
}

@media (min-width: 992px) {
  .lg-down-only {
    display: none;
  }
}

@media (max-width: 767px) {
  .md-up-only {
    display: none;
  }
}

@media (min-width: 767px) {
  .md-down-only {
    display: none;
  }
}

/* =====| Font Types |===== */
/* =====| Font Weights |===== */
.weight-300 {
  font-weight: 300;
}

.weight-400 {
  font-weight: 400;
}

.weight-500 {
  font-weight: 500;
}

.weight-600 {
  font-weight: 600;
}

.weight-700 {
  font-weight: 700;
}

/* =====| Font Colors |===== */
/* =====| Font Sizes |===== */
.text-40 {
  font-size: 40px;
  line-height: 50px;
}

.text-35 {
  font-size: 35px;
  line-height: 45px;
}

.text-30 {
  font-size: 30px;
  line-height: 40px;
}

.text-25 {
  font-size: 25px;
  line-height: 35px;
}

.text-18 {
  font-size: 18px;
}

.text-16 {
  font-size: 16px;
}

.text-14 {
  font-size: 14px;
}

@media (max-width: 1200px) {
  .text-center-xl {
    text-align: center;
  }
}

figure.aligncenter {
  margin-bottom: 20px;
}