@import url("https://fonts.googleapis.com/css2?family=Roboto+Slab:wght@100;200;300;400;500;600;700;800;900&display=swap");
:root {
  --white: #fff;
  --black: #000;
  --theme-color: #ff8700;
}
html {
  scroll-behavior: smooth;
  height: 100%;
}

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

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

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

p {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
  color: #828288;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  font-family: "Poppins", sans-serif;
}

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

figure {
  margin: 0;
}

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

.navbar-brand img {
  max-height: 150px;
  transition: 0.3s ease-in-out;
}

header {
  /* position: absolute; */
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: 99999;
  top: 0;
  padding: 1.5rem 0;
  width: 100%;
  background: var(--white);
  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: 14px;
  font-weight: 400;
  color: #222222;
  text-transform: uppercase;
  line-height: 1;
  position: relative;
}
.navbar-nav .nav-item .nav-link::after {
  content: "";
  width: 100%;
  height: 2px;
  position: absolute;
  left: 0;
  bottom: -5px;
  transition: transform 0.3s ease-in-out;
  background-color: var(--white);
  transform-origin: center;
  transform: scaleX(0);
}
.navbar-nav .nav-item.active .nav-link::after,
.navbar-nav .nav-item .nav-link:hover::after {
  transform: scaleX(1);
}
header .form-inline {
  margin-left: 2rem;
}
.main-slider {
  position: relative;
}
.carousel-caption {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  display: flex;
  text-align: left;
  align-items: center;
  justify-content: center;
}
.main-slider h2 {
  font-family: "Roboto Slab", serif;
  font-size: 5rem;
  text-transform: uppercase;
  color: var(--white);
}
.main-slider p {
  color: var(--white);
  font-size: 2rem;
  font-weight: 300;
  font-family: "Poppins";
  line-height: 1.485;
}
.main-slider .btn-group {
  gap: 2rem;
}

.themeBtn {
  min-width: 200px;
  text-align: center;
  padding: 1em;
  font-size: 14px;
  font-weight: 500;
  border-radius: 5px;
  display: inline-block;
  margin: 0.5rem 0;
  background: transparent;
  color: var(--theme-color);
  border: 1px solid var(--theme-color);
}
.themeBtn:hover {
  background: var(--theme-color);
  color: var(--white);
}
header .themeBtn {
  background: var(--theme-color);
  color: var(--white);
}
header .themeBtn:hover {
  background: transparent;
  color: var(--theme-color);
}
.socialIo {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.25rem;
}
.socialIo li a {
  height: 44px;
  width: 44px;
  border-radius: 50%;
  line-height: 1;
  font-size: 1.25rem;
  display: grid;
  place-items: center;
  color: var(--white);
}
.socialIo li .fb {
  background: #4b69b0;
}
.socialIo li .insta {
  background: radial-gradient(
    circle at 30% 107%,
    #fdf497 0%,
    #fdf497 5%,
    #fd5949 45%,
    #d6249f 60%,
    #285aeb 90%
  );
}
.socialIo li .ytube {
  background: #e83f3a;
}
.socialIo li .twitr {
  background: #37b1e1;
}
.socialIo li .vimeo {
  background: #3396cd;
}
.socialIo li a:hover {
  background-color: var(--theme-color);
  color: var(--white);
}
.mouse {
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  text-align: center;
  bottom: 2.5rem;
  z-index: 99;
}
.bounce-element {
  animation: bounce-in 0.9s infinite alternate;
  -webkit-animation: bounce-in 0.9s infinite alternate;
}
@keyframes bounce-in {
  from {
    transform: translateY(0px);
  }
  to {
    transform: translateY(-15px);
  }
}
@-webkit-keyframes bounce-in {
  from {
    transform: translateY(0px);
  }
  to {
    transform: translateY(-15px);
  }
}

.cntctSec {
  background: url(../images/bg1.jpg) top/cover no-repeat;
  padding: 4rem 0 13rem;
  position: relative;
  background-size: contain;
  z-index: 1;
  overflow: hidden;
}
.clpOne {
  position: absolute;
  right: 4rem;
  top: 1.8rem;
  z-index: -1;
}
.cntctHead h2 {
  font-size: 2.5rem;
  color: var(--white);
  text-transform: uppercase;
  font-family: "Roboto Slab", serif;
  font-weight: bold;
  margin: 0;
}
.cntctHead p {
  font-size: 1rem;
  color: var(--white);
  font-weight: 400;
  margin: 0 0 2rem;
}
.frmCntct span {
  display: block;
  position: relative;
}
.frmCntct span input {
  height: 53px;
  width: 100%;
  border-radius: 5px;
  border: 0;
  padding: 0 2em 0 2.6em;
}
.frmCntct span i {
  position: absolute;
  left: 18px;
  top: 18px;
}
.frmCntct .themeBtn {
  font-size: 1.25rem;
  padding: 0.62em 0;
  width: 100%;
  color: var(--white);
  background: #2d2d2d;
  text-transform: uppercase;
}
.frmCntct .themeBtn:hover {
  background-color: var(--theme-color);
  border-color: #2d2d2d;
}
.frmCntct span textarea {
  height: 53px;
  width: 100%;
  border-radius: 5px;
  border: 0;
  padding: 0.9em 2em 0 2.6em;
}

.secHeading {
  font-size: 3.125rem;
  font-weight: 500;
  color: var(--black);
  font-family: "Roboto Slab", serif;
  line-height: 1;
  position: relative;
  text-transform: uppercase;
}
.secHeading span {
  color: var(--theme-color);
  display: block;
  text-transform: uppercase;
  font-size: 1.375rem;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  margin-bottom: 0.5rem;
}
.aboutSec figure {
  display: flex;
  align-items: flex-start;
  gap: 3rem;
}
.aboutSec figure img {
  border-radius: 50%;
}
.aboutSec figure img.imgTwo {
  position: absolute;
  left: 4rem;
  bottom: -5rem;
  border: 1rem solid var(--white);
}
.aboutSec figure .roundBg {
  position: absolute;
  border-radius: 50%;
  width: 8rem;
  height: 8rem;
  right: 7rem;
  bottom: 0;
  z-index: -1;
  background-color: var(--theme-color);
}
.aboutSec figure .circle {
  position: absolute;
  left: 0;
  top: 50%;
}
.aboutSec figure .dots {
  position: absolute;
  border-radius: 0;
  z-index: -1;
  left: 8rem;
  top: 2rem;
}
.aboutSec h3 {
  font-size: 1.5rem;
  font-weight: 500;
  font-family: "Poppins";
  color: #09121a;
  text-transform: uppercase;
  line-height: 1.333;
  margin-bottom: 1.5rem;
}
.aboutSec p {
  font-size: 1rem;
  font-weight: 400;
  width: 90%;
  font-family: "Poppins";
  color: #717c80;
  line-height: 2;
}

/* serviceSection */
.serviceSection {
  background-color: #f7f7f7;
}
.servContent {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: #ececec;
  width: 100%;
  height: calc(100% - 1.5rem);
  margin-bottom: 1.5rem;
}
.servContent .themeBtn {
  background-color: var(--theme-color);
  color: var(--white);
}
.servWrap {
  display: block;
  overflow: hidden;
  margin-bottom: 1.5rem;
  position: relative;
  background: var(--black);
}
.servWrap .overlay {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  padding: 1rem;
  display: flex;
  align-items: flex-end;
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.4s cubic-bezier(1, 0, 0, 1);
}
.servWrap .overlay h3 {
  font-size: 2rem;
  font-family: "Nunito Sans", sans-serif;
  color: var(--white);
  font-weight: bold;
  text-transform: uppercase;
  line-height: 1;
}
.servWrap img {
  opacity: 0.75;
  width: 100%;
  transition: opacity, ease all 2s;
  transform: scale(1);
}
.servWrap:hover img,
.servWrap:focus img {
  opacity: 1;
  transform: scale(1.1);
}
.servWrap:hover .overlay {
  transform-origin: top;
  transform: scaleY(1);
}

.galleryWrap {
  display: block;
  overflow: hidden;
  position: relative;
  background: var(--black);
  margin-bottom: 1.5rem;
}

.galleryWrap img {
  opacity: 0.75;
  width: 100%;
  transition: opacity, ease all 2s;
  transform: scale(1);
}
.galleryWrap:hover img,
.galleryWrap:focus img {
  opacity: 1;
  transform: scale(1.1);
}

.galrySec .themeBtn {
  background-color: var(--theme-color);
  color: var(--white);
}

/* Testimonial Section */

.testimonialHead {
  text-align: center;
  position: relative;
  margin-bottom: 50px;
  display: block;
  text-align: center;
}
.testimonialHead img {
  margin: 0 0 15px;
}
.testimonialSec {
  padding: 5rem 0 8rem;
  background: #f7f7f7;
}
.testimonialBox {
  border-width: 2px;
  border-color: rgb(235, 235, 235);
  border-style: solid;
  border-radius: 8px;
  background-color: rgb(255, 255, 255);
  padding: 50px 30px;
}
.testimonialBox span i {
  color: #f8a72a;
  font-size: 13px;
}
.testimonialBox p {
  font-size: 15px;
  color: #3d3d3d;
  font-weight: 600;
  line-height: 2;
  margin: 25px 0 35px;
}
.testimonialSlider .slick-dots {
  bottom: -70px;
}
.testimonialSlider .slick-dots li button {
  background: #c7c8c9;
  border-radius: 50%;
  width: 5px;
  height: 5px;
  margin: 0;
}
.testimonialSlider .slick-dots li.slick-active button {
  width: 15px;
  height: 15px;
  background-color: #2d2d2d;
}
.userOne {
  display: flex;
  align-items: center;
}
.usrContent {
  padding-left: 1rem;
}
.usrContent h2 {
  font-size: 1rem;
  color: #222222;
  font-family: "Poppins", sans-serif;
  margin: 0 0 3px;
}
.mapSec {
  padding: 0;
}
.mapSec iframe {
  filter: grayscale(100%);
  margin-bottom: -7px;
}
.subsCribe {
  background: url(../images/subscrbbg.jpg) no-repeat top center/ cover;
  padding: 8rem 0;
}
.subsCribe .secHeading {
  color: var(--white);
}
.subsCribe p {
  margin: 0;
  font-size: 1rem;
  color: #ffffff;
  font-weight: 500;
}
.newsleter span {
  display: block;
  position: relative;
}
.newsleter span i {
  position: absolute;
  top: 30px;
  left: 20px;
  font-size: 1.2rem;
  vertical-align: middle;
  color: #a6b1be;
}
.newsleter span input {
  width: 100%;
  background: #fff;
  border: 1px solid #a6b1be;
  height: 77px;
  padding: 0 60px;
  color: #000;
}
.newsleter span button {
  position: absolute;
  right: 3.75rem;
  border: 0;
  background: transparent;
}
.newsleter span button i {
  color: #abb6c2;
}
.newsleter span i {
  position: absolute;
  top: 28px;
  left: 20px;
  font-size: 1.5rem;
  vertical-align: middle;
}
footer {
  background: url(../images/ftrbg.jpg) no-repeat bottom center/ cover;
  padding: 6rem 0 61rem;
}
footer .socialIo{
  margin-top: 2rem;
}
.ftrLogo {
  text-align: center;
}
.ftrHead h2 {
  font-size: 1.375rem;
  color: #20222c;
  text-transform: uppercase;
  font-weight: 700;
  margin: 0 0 1.5rem;
  font-family: "Poppins", sans-serif;
}
.ftrHead ul.links li a {
  font-size: 14px;
  color: #2c2c2c;
  font-weight: 500;
  text-transform: uppercase;
}
.ftrHead ul.links li a:hover{
  color: var(--theme-color);
}
.ftrHead ul li + li {
  margin: 3px 0 0;
}
.infoLst a {
  font-size: 14px;
  color: #2c2c2c;
  font-weight: 500;
  display: flex;
  align-items: center;
}
.infoLst a i {
  font-size: 1.5rem;
  vertical-align: middle;
  width: 45px;
}
.infoLst a + a {
  margin: 30px 0 0;
}
.copyRight {
  border-top: 1px solid #b9b8ba;
  margin-top: 4rem;
  padding: 30px 0;
}

.copyRight p {
  font-size: 14px;
  color: #264247;
  margin: 0;
  font-weight: 500;
}

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

.copyRight ul li a {
  font-size: 14px;
  color: #264247;
  margin: 0;
  font-weight: 600;
}

.copyRight ul li a span {
  display: inline-block;
  margin: 0 20px;
}
.ftrHead ul li a:hover,
.ftrLogo ul li a:hover,
.infoLst a:hover,
.copyRight ul li a:hover {
  color: #135c0a;
}
.themeBtn:hover {
  background: #2d2d2d;
  color: #fff;
}
.frmCntct .themeBtn:hover {
  background-color: #60bc42;
  color: #fff;
}