* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Lato", sans-serif;
}

* h1,
* h2,
* h3,
* h4,
* h5,
* h6,
* p {
  margin: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

html,
body {
  scroll-padding-top: 80px;
  scroll-margin-top: 80px;
}

:root {
  --white: #ffffff;
  --black: #000000;
  --mute: #323232;
  --gray: #e0e0e0;
  --mainbg: #e4491d0d;
  --graybg: #d8dbe2;
  --primary: #e4491d;
  --secondary: #202020;
  --white70: #ffffffb2;
}

body {
  background-color: #ffffff;
  position: relative;
}

.flex-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.bg-main {
  background-color: var(--mainbg);
}

.bg-white {
  background-color: var(--white);
}

.bg-orange {
  background-color: var(--primary);
}

.bg-dark-main {
  background-color: var(--secondary);
}

.bg-mute {
  background-color: var(--mute);
}

.primary-txt {
  color: var(--primary);
}

.secondary-txt {
  color: var(--secondary);
}

.black-txt {
  color: var(--black);
}

.mute-txt {
  color: var(--mute);
}

.white70-txt {
  color: var(--white70);
}

.white-border {
  border: 1px solid var(--white);
}

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

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

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

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

.section-title h2 {
  color: var(--secondary);
  font-size: 44px;
  line-height: 50px;
  font-weight: 700;
  margin-bottom: 40px;
}

.section-title h5 {
  color: var(--primary);
  font-size: 24px;
  line-height: 30px;
  font-weight: 700;
}

.content {
  font-size: 16px;
  line-height: 20px;
  font-weight: 400;
}

.title-txt-24 {
  font-size: 24px;
  line-height: 30px;
  font-weight: 700;
}

/* Buttons, Links */

.theme-btn {
  display: inline-block;
  text-decoration: none;
  background-color: var(--primary);
  border: 1px solid var(--primary);
  padding: 11px 20px;
  /*color: #FFFFFF !important;*/
  color: #FFFFFF;
  font-size: 16px;
  line-height: 20px;
  font-weight: 700;
  text-transform: capitalize;
  transition: all 0.3s ease;
  cursor: pointer;
}

.theme-btn:hover {
  background-color: var(--white);
  /*color: #e4491d !important;*/
  color: #e4491d;
  border-color: var(--white);
}

.white-btn {
  background-color: var(--white);
  color: var(--primary);
}

.theme-btn.white-btn:hover {
  background-color: var(--primary);
  color: var(--white);
}

.contact-btn:hover {
  background-color: var(--white);
  color: #e4491d !important;
   border-color: var(--white);
}

.icon-box {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--primary);
  background-color: var(--primary);
  flex-shrink: 0;
}

.icon-box svg {
  width: 20px;
  height: 20px;
}

/* Header */

header {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: transparent;
  z-index: 100;
  padding: 12px 0;
}

.navbar-brand img {
  height: 40px;
}

.navbar-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-link {
  display: inline-block;
  text-decoration: none;
  color: var(--white);
  font-size: 16px;
  line-height: 20px;
  font-weight: 400;
  text-transform: capitalize;
  transition: all 0.3s ease;
}

.nav-link:hover,
.nav-link.active , .nav-item.active .nav-link {
  color: #FFFFFF !important;
}
.theme-btn .nav-link:hover {
color: #e4491d !important;
}

.navbar button {
  border: none;
  outline: none;
  padding: 0;
}

.navbar-toggler:focus {
  outline: none;
  box-shadow: none;
}

header .hamburger {
  position: absolute;
  top: -11px;
  right: 24px;
  left: auto;
  width: auto;
  height: 0;
  transition-duration: 0.5s;
}

header .hamburger .icon {
  background-color: var(--primary);
  position: absolute;
  top: 27px;
  width: 24px;
  height: 2px;
  border-radius: 4px;
  transition-duration: 0.5s;
}

header .hamburger .icon::before {
  content: "";
  background-color: var(--primary);
  position: absolute;
  top: -6px;
  right: 0;
  width: 24px;
  height: 2px;
  border-radius: 4px;
  transition-duration: 0.5s;
}

header .hamburger .icon::after {
  content: "";
  background-color: var(--primary);
  position: absolute;
  top: 6px;
  right: 0;
  width: 16px;
  height: 2px;
  border-radius: 4px;
  transition-duration: 0.5s;
}

header .hamburger.open .icon {
  top: 30px;
  background: transparent;
  transition-duration: 0.5s;
}

header .hamburger.open .icon::before {
  background-color: var(--primary);
  -webkit-transform: rotateZ(45deg) scaleX(0.75) translate(2px, 2.5px);
  -moz-transform: rotateZ(45deg) scaleX(0.75) translate(2px, 2.5px);
  -ms-transform: rotateZ(45deg) scaleX(0.75) translate(2px, 2.5px);
  -o-transform: rotateZ(45deg) scaleX(0.75) translate(2px, 2.5px);
  transform: rotateZ(45deg) scaleX(0.75) translate(2px, 2.5px);
}

header .hamburger.open .icon::after {
  width: 24px;
  background-color: var(--primary);
  -webkit-transform: rotateZ(-45deg) scaleX(0.75) translate(8px, -7px);
  -moz-transform: rotateZ(-45deg) scaleX(0.75) translate(8px, -7px);
  -ms-transform: rotateZ(-45deg) scaleX(0.75) translate(8px, -7px);
  -o-transform: rotateZ(-45deg) scaleX(0.75) translate(8px, -7px);
  transform: rotateZ(-45deg) scaleX(0.75) translate(8px, -7px);
}

.header-sticky {
  background-color: var(--mute);
  transition: all 0.5s ease;
}

.header-sub-menu {
  position: absolute;
  top: 50px;
  right: -100%;
  background-color: var(--secondary);
  padding: 16px;
  border: 1px solid #ffffff1a;
  display: none;
  opacity: 0;
  transition: all 0.2s ease;
}

.header-sub-menu li:not(:last-child) {
  margin-bottom: 16px;
}

.header-sub-menu li a {
  text-decoration: none;
  display: inline-block;
  color: var(--white);
  font-size: 16px;
  line-height: 20px;
  font-weight: 400;
  white-space: nowrap;
  text-transform: capitalize;
  transition: all 0.3s ease;
}

.header-sub-menu li a:hover,
.header-sub-menu li a.active, .header-sub-menu .nav-item.active .nav-link {
  color: var(--primary);
}

/* Hero Section */

.hero {
  /*height: 530px;*/
  position: relative;
  background-image: url(../images/backgrounds/hero-bg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  display: flex;
  align-items: center;
  z-index: 1;
  padding: 150px 0;
  min-height: 530px;
}

.hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    0deg,
    rgba(228, 73, 29, 0.5) 0%,
    rgba(228, 73, 29, 0) 100%
  );
  z-index: -1;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(32, 32, 32, 0.8) 0%,
    rgba(32, 32, 32, 0.56) 100%
  );
  z-index: -1;
}

.hero h1 {
  font-size: 60px;
  line-height: 66px;
  font-weight: 700;
}

.page-links {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
}

.page-links li:not(:last-child)::after {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  background-color: #ffffff4d;
  border-radius: 50%;
  margin-left: 6px;
}

.page-links li a {
  display: inline-block;
  text-decoration: none;
  color: #ffffffcc;
  font-size: 16px;
  line-height: 20px;
  font-weight: 400;
  transition: all 0.3s ease;
}

.page-links li a:hover {
  color: var(--primary);
}

.page-links li a.active {
  color: var(--white);
}

/* Global Section */

.global-card {
  position: relative;
}

.global-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(32, 32, 32, 0) 0%,
    rgba(32, 32, 32, 0.8) 100%
  );
}

.global-card h4 {
  position: absolute;
  bottom: 20px;
  left: 20px;
  z-index: 1;
  font-size: 16px;
  line-height: 22px;
  font-weight: 700;
  text-transform: capitalize;
}

.global-content {
  font-size: 24px;
  line-height: 30px;
  font-weight: 400;
  margin-top: 40px;
  text-align: center;
}

/* Design Section */

.design-card {
  height: 100%;
  padding: 20px;
  background-color: var(--graybg);
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 20px;
}

.design-card .count {
  background-color: var(--secondary);
  width: 60px;
  height: 60px;
  font-size: 24px;
  line-height: 30px;
  font-weight: 700;
  flex-shrink: 0;
}

/* Manufacture Section */

.manufacture h5 {
  margin-bottom: 10px;
}

.manufacture ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 24px;
}

.feature ul {
  gap: 24px;
}

.manufacture ul li {
  display: flex;
  align-items: start;
  gap: 10px;
}

.manufacture ul li img {
  margin-top: 5px;
}

.manufacture-content {
  margin: 25px 0;
}

/* Contact Section */

.contact {
  position: relative;
  z-index: 10;
}

.contact::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 50%;
  background-color: var(--mute);
  z-index: -1;
  left: 0;
  bottom: 0;
}

.contact .call-btn {
  border: 1px solid var(--white);
}

.contact .call-btn svg {
  width: 16px;
  height: 16px;
}

.contact .call-btn:hover svg path {
  fill: var(--primary);
}

/* CTA Section */

.cta .section-title h2 {
  color: var(--primary);
}

.cta form .input-wrapper label {
  display: block;
  margin-bottom: 6px;
  text-transform: capitalize;
}

.cta form .input-wrapper input,
.cta form .input-wrapper textarea {
  width: 100%;
  background-color: transparent;
  border: 1px solid #ffffff33;
  outline: none;
  padding: 11px 16px;
  color: var(--white);
  font-size: 16px;
  line-height: 20px;
  font-weight: 400;
  transition: all 0.3s ease;
}

.cta form .input-wrapper textarea {
  resize: none;
}

.cta form .input-wrapper input::placeholder,
.cta form .input-wrapper textarea::placeholder {
  color: #ffffff80;
}

.cta form .input-wrapper input:hover,
.cta form .input-wrapper input:focus,
.cta form .input-wrapper textarea:hover,
.cta form .input-wrapper textarea:focus {
  border-color: var(--primary);
}

/* Footer */

.footer-wrapper {
  padding: 50px 0;
}

.hours {
  margin: 20px 0;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 16px;
}

.social-links .icon-box {
  background-color: transparent;
  border-color: #ffffff4d;
  transition: all 0.3s ease;
}

.social-links .icon-box:hover {
  background-color: var(--primary);
  border-color: var(--primary);
}

.link-wrapper h6 {
  margin-bottom: 20px;
}

.footer-links li:not(:last-child) {
  margin-bottom: 10px;
}

.footer-links li a {
  display: inline-block;
  text-decoration: none;
  color: var(--white70);
  text-transform: capitalize;
  transition: all 0.3s ease;
}

.footer-links li a:hover,
.footer-links li a.active {
  color: var(--primary);
}

.connect-links li {
  display: flex;
  align-items: start;
  gap: 20px;
  margin-bottom: 20px;
}

.connect-links li:last-child {
  margin-bottom: 0;
}

.connect-links li a {
  display: inline-block;
  text-decoration: none;
  color: var(--white);
  transition: all 0.3s ease;
}

.connect-links li a:hover {
  color: var(--primary);
}

footer .copyright {
  padding: 20px 0;
  border-top: 1px solid #ffffff33;
}

.footer-logo img{height: 50px}


/* custom css for contact form */

#cta br, .bar{display: none;}
.contact-wrapper .content{
    margin: 0 auto;
}
.listing-content {
    margin: 50px 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    align-content: center;
}
.listing-content ul li {
    display: flex;
    align-items: start;
    gap: 10px;
}
.full_width_slider_wrapper {
    margin-top: 50px;
}
.slider-section .chr_content {
    background-color:transparent
}
.main-slider-nav .slick-track .slick-slide img{
    height: 250px;
    width: 100% !important;
    object-fit: contain;
}
.full_width_slider_wrapper .main-slider-nav .slick-track .slick-slide {
    height: 270px !important;
    object-fit: contain;
}
.full_width_slider_wrapper .slick-prev:before {
    border-right: 15px solid #e4491d !important;
}
.full_width_slider_wrapper .slick-next:before {
    border-left: 15px solid #e4491d !important;
}