@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&amp;display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,600;1,700&display=swap");

:root {
  --white: #fff;
  --black: #000;
  --primary: #9d9c83;
  --secondary: #1e1e1e;
}
html {
  scroll-behavior: smooth;
  height: 100%;
}

body {
  position: relative;
  background: #2b2c30;
  overflow-x: hidden;
  height: 100%;
  font-family: "Poppins", sans-serif;
}

/* How to add New font */
/* @font-face {
  font-family: "Font Name";
  src: url("../fonts/fontpath.ttf");
} */

@media (min-width: 1700px) {
  .container {
    max-width: 1380px;
  }
}

section {
  position: relative;
  padding: 6rem 0;
}

p {
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.8;
  color: var(--white);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Montserrat", sans-serif;
  color: var(--white);
}

img {
  max-width: 100%;
  height: auto;
}

.img-auto {
  display: block;
  max-width: 100%;
  margin: 0 auto;
}

a,
button {
  text-decoration: none !important;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

a:hover,
button:hover {
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

header .navbar-brand {
  padding-top: 0;
}

figure {
  margin: 0;
}

ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.navbar-brand img {
  transition: 0.3s ease-in-out;
}

header {
  position: absolute;
  left: 0;
  right: 0;
  z-index: 111;
  top: 0;
  width: 100%;
  transition: 0.3s ease-in-out;
}

header.sticky {
  position: fixed;
}

header.sticky .navbar-brand img {
  max-width: 100px;
}

.navbar-nav {
  gap: 1rem 2rem;
}
.navbar-nav .nav-item .nav-link {
  font-size: 1.125rem;
  font-weight: 400;
  color: var(--white);
  text-transform: uppercase;
}

.navbar-nav .nav-item .nav-link:hover {
  color: var(--primary);
}

.form-inline {
  margin-left: 2rem;
}

.themeBtn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--white);
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1;
  padding: 1em 1.5em;
  text-transform: uppercase;
  background: var(--primary);
  border: 1px solid var(--primary);
  border-radius: 3.125rem;
}

.themeBtn:hover {
  background: var(--secondary);
  color: var(--primary);
}

/* About Sec Start */

.aboutSec {
  background: url(../images/aboutBg.png) center/cover no-repeat;
  margin-top: -14rem;
  padding-top: 22rem;
  position: relative;
  z-index: -1;
}

.aboutSec figure img {
  border-radius: 1.5rem;
}

.aboutSec h2 span {
  display: block;
  font-size: 2rem;
}

.aboutSec h2 {
  font-size: 4.0625rem;
  margin: 0;
  font-weight: 600;
}

.aboutSec p {
  width: 82%;
}

.fire1 {
  position: absolute;
  bottom: -8rem;
  right: 0;
}

/* About Sec End */

/* Service Sec Start */

/* .serviceSec {
  background: url(../images/serviceBg.png) center/cover no-repeat;
} */

.serviceSec .row + .row {
  padding-top: 5rem;
}

.secHeading {
  font-size: 4.375rem;
  text-transform: uppercase;
  font-weight: 600;
}

.secHeading span {
  font-size: 2rem;
  display: block;
  text-transform: uppercase;
}

.serviceSec figure img {
  border-radius: 10px;
  border: 1px solid #ffffff;
}

.serviceSec h3 {
  font-size: 3rem;
  text-transform: uppercase;
  font-weight: 600;
}

.serviceSec ul {
  margin-top: 2.5rem;
}

.serviceSec ul li a {
  font-size: 1.125rem;
  color: var(--white);
  line-height: 1.9;
}

.serviceSec ul li a i {
  color: var(--white);
  padding-right: 1rem;
  font-size: 0.875rem;
}

.lastList ul {
  margin-top: -0rem;
}

.fire2 {
  position: absolute;
  bottom: -11rem;
  left: -8rem;
  overflow: hidden;
  z-index: 1;
}

/* Service Sec End */

/* Gallery Sec Start */

.gallerySec {
  background: url(../images/galleryBg.png) center/cover no-repeat;
}

.gallerySec figure {
  margin-bottom: 1.5rem;
  position: relative;
  overflow: hidden;
}

.gallerySec figure img {
  transition: 0.5s ease-in-out;
}

.gallerySec figure img:hover {
  transform: scale(1.1);
}

/* Gallery Sec End */

/* Help Sec Start */

.helpSec {
  background: url(../images/helpBg.png) center/cover no-repeat;
}

.subHeading {
  font-size: 3.125rem;
  font-weight: 600;
  text-transform: uppercase;
}

.fire3 {
  z-index: 1;
  position: absolute;
  left: -5%;
  bottom: -37%;
}

.fire4 {
  position: absolute;
  right: -8%;
  bottom: -60%;
  z-index: 1;
}

/* Help Sec End */

/* Contact Sec Start */

/* .contactSec {
  background-color: var(--secondary);
  padding-bottom: 4rem;
} */

.contactForm .form-group .form-control {
  background: transparent;
  border-top: 0;
  border-left: 0;
  border-right: 0;
  border-radius: 0;
  height: 0px;
  margin-bottom: 1.5rem;
}

.contactForm .form-group label {
  font-size: 20px;
  color: var(--white);
  font-weight: 400;
}

.contactForm .form-group textarea {
  min-height: 60px;
}

.mapSec {
  padding: 0;
}

/* Contact Sec End */

/* Footer Sec Start */

footer {
  /* background-color: var(--secondary); */
  padding-top: 6rem;
}

footer .icon {
  display: flex;
  align-items: start;
  justify-content: start;
  color: #fff;
  font-size: 1.35rem;
  gap: 1rem;
  padding-bottom: 2rem;
}

.links li a {
  font-size: 1.125rem;
  color: var(--white);
  text-transform: uppercase;
}

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

.links li + li {
  padding-top: 1.125rem;
}

footer .icon h6 {
  font-weight: 600;
  margin: 0;
}

footer .icon span {
  font-size: 1.125rem;
  display: block;
}

.copyRight {
  margin-top: 2rem;
  border-top: 1px solid #4b4948;
  padding: 1.5rem 0;
}

.copyRight p {
  margin: 0;
}

.socialLink ul {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 1rem;
}

.socialLink ul li a i {
  background-color: var(--white);
  width: 3rem;
  height: 3rem;
  display: grid;
  place-items: center;
  color: #757c85;
  border-radius: 3.125rem;
  transition: 0.5s ease-in-out;
}

.socialLink ul li a i:hover {
  background-color: var(--primary);
  color: var(--white);
}

/* Footer Sec End */

/* Inner Pages Css Start */

.innerBan .overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  margin-top: -5rem;
}

.innerBan h2 {
  font-size: 5rem;
  text-transform: uppercase;
  font-weight: 600;
}

.aboutInner {
  background: url(../images/aboutInnerBg.png) center/cover no-repeat;
  padding-top: 18rem;
}

.aboutInner .row + .row {
  padding-top: 6rem;
}

.aboutInner p {
  width: 100%;
}

.aboutInner .fire1 {
  top: 23%;
  right: -2rem;
  overflow: hidden;
}

.bigPine {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #707070;
  margin-bottom: 1.8rem;
}

.bigPine h5 {
  font-size: 1.875rem;
  text-transform: uppercase;
  font-weight: 600;
}

.bigPine h6 {
  font-size: 1.75rem;
}

.srvInner {
  background: url(../images/srvInnerBg.png) center/cover no-repeat;
}

.serviceSec hr {
  border-bottom: 1px solid #707070;
  margin-top: 2rem;
}

.srvInner {
  margin-top: -15rem;
  padding-top: 20rem;
  position: relative;
  z-index: -1;
}

.galleryInner {
  background: url(../images/galleryInnerBg.png) center/cover no-repeat;
  margin-top: -15rem;
  padding-top: 20rem;
  position: relative;
  z-index: -1;
}

.betterSec {
  background: url(../images/betterBg.png) center/cover no-repeat;
  margin-top: -15rem;
  position: relative;
  z-index: -1;
  padding: 16rem 0 3rem 0;
}

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

.contactInner button {
  background-color: #2b2c30;
}

/* Inner Pages Css End */

.reveal {
  visibility: hidden;
  position: relative;
  overflow: hidden;
}

/* loader */
.preLoader {
  width: 100%;
  height: 100%;
  z-index: 1111;
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
}
.preLoader.black {
  background-color: var(--primary);
  z-index: 11113;
}
.preLoader.white {
  z-index: 11112;
  background-color: var(--secondary);
}
.betterSect {
  background-color: var(--primary);
  padding: 4rem 0;
}
