:root {
  --white: #fff;
  --black: #000;
  --theme-color: #f3c963;
}
html {
  scroll-behavior: smooth;
  height: 100%;
}

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

@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: #828288;
}

/* @font-face {
    font-family: 'Vampire Wars';
    src: url(../fonts/'VampireWars.eot');
    src: url(../fonts/'VampireWars.eot?#iefix') format('embedded-opentype'),
        url(../fonts/'VampireWars.woff2') format('woff2'),
        url(../fonts/'VampireWars.woff') format('woff'),
        url(../fonts/'VampireWars.ttf') format('truetype'),
        url(../fonts/'VampireWars.svg#VampireWars') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Vampire Wars';
    src: url(../fonts/'VampireWars-Italic.eot');
    src: url(../fonts/'VampireWars-Italic.eot?#iefix') format('embedded-opentype'),
        url(../fonts/'VampireWars-Italic.woff2') format('woff2'),
        url(../fonts/'VampireWars-Italic.woff') format('woff'),
        url(../fonts/'VampireWars-Italic.ttf') format('truetype'),
        url(../fonts/'VampireWars-Italic.svg#VampireWars-Italic') format('svg');
    font-weight: normal;
    font-style: italic;
    font-display: swap;
} */

h1,
h2,
h3,
h4,
h5,
h6,
p {
  font-family: "Montserrat", sans-serif;
  /* 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 {
  width: 285px;
  display: inline-block;
  text-align: center;
  padding: 1rem 3rem 3rem 2rem;
  background: url(../images/logoBg.png) bottom center/cover no-repeat;
}
.navbar-brand img {
  transition: 0.3s ease-in-out;
}

header {
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: 99999;
  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 2.5rem;
}
.navbar-nav .nav-item .nav-link {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--black);
  text-transform: capitalize;
  line-height: 1;
  padding: 0;
  position: relative;
}
.navbar-nav .nav-item .nav-link::after {
  content: "";
  width: 100%;
  height: 3px;
  position: absolute;
  left: 0;
  bottom: -0.5rem;
  transition: transform 0.3s ease-in-out;
  background-color: var(--theme-color);
  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);
}
.form-inline .themeBtn {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  background-size: 100% 100%;
  padding: 1.5rem 3rem 1.5rem 3rem;
}
.main-slider {
  position: relative;
}
.carousel-caption {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 1;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: center;
}
.main-slider h2 {
  color: var(--black);
  font-size: 6rem;
  font-weight: 600;
  line-height: 1;
}
.main-slider p {
  font-size: 1.75rem;
  font-weight: 400;
  color: var(--black);
  line-height: 1.5;
}
.main-slider .bottomImg {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}
.goDown {
  position: absolute;
  left: 50%;
  bottom: 5rem;
  color: var(--black);
  font-size: 2.5rem;
  text-align: center;
  width: 3rem;
  height: 5rem;
  display: grid;
  place-items: center;
  z-index: 1;
  border-radius: 30px;
  background-color: var(--white);
  transform: translateX(-50%);
}
.goDown:hover {
  background-color: var(--theme-color);
  color: var(--black);
}
.themeBtn {
  font-size: 1.25rem;
  color: var(--black);
  font-weight: 600;
  text-transform: capitalize;
  padding: 1.5rem 3rem;
  background: url(../images/btnBg.png) bottom center/cover no-repeat;
}
.themeBtn:hover {
  color: var(--white);
  filter: grayscale(1);
}
.secHeading {
  font-size: 6rem;
  font-weight: 600;
  color: var(--black);
  line-height: 1;
  position: relative;
  text-transform: capitalize;
}

.socialIo {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  position: absolute;
  left: 5rem;
  top: 50%;
  z-index: 1;
  transform: translateY(-50%);
}
.socialIo li a {
  height: 5rem;
  width: 5rem;
  font-size: 1.5rem;
  display: grid;
  place-items: center;
  color: var(--black);
  background: url(../images/IconBg.png) bottom center/cover no-repeat;
}
.socialIo li a:hover {
  color: var(--white);
  filter: grayscale(1);
}

/* aboutSec */
.aboutSec figure {
  text-align: right;
  background: url(../images/aboutBg.png) left / cover no-repeat;
}
.aboutSec figure img {
  -webkit-animation: rotateItem 5s normal linear infinite;
  animation: rotateItem 5s normal linear infinite;
}

.whatWeSec figure {
  margin: 0 -10rem 0 -4rem;
  text-align: right;
  background: url(../images/aboutBg.png) center / 90% no-repeat;
}
.whatWeSec figure img {
  -webkit-animation: rotateItem 10s normal linear infinite;
  animation: rotateItem 10s normal linear infinite;
}
/* WHat we Do */
.whatWeSec {
  padding: 10rem 0;
  background: url(../images/bgGrey.png) center / 100% 100% no-repeat;
}
.whatWeSec .w-85 {
  width: 85%;
}
.whatWeSec ul li {
  padding-left: 2rem;
  font-size: 1.375rem;
  font-weight: 600;
  line-height: 1.8;
  color: var(--black);
  background: url(../images/check.png) left center / 20px no-repeat;
}

/* Begin: Facilities Sec */

.facilityThumb {
  position: relative;
  margin: -15px;
  transition: ease all 0.5s;
  display: block;
}
.facilityThumb .skew {
  position: relative;
  transform: skew(-15deg);
  overflow: hidden;
  transition: ease all 0.5s;
  /* width: 300px; */
}

.facilityThumb:hover .skew {
  transform: skew(-16.5deg);
}

.facilityThumb .skew img {
  transform: skew(15deg);
  width: 140%;
  position: relative;
  max-width: none;
  margin-left: -20%;
}
.facilityThumb .content {
  position: absolute;
  left: -1rem;
  bottom: 0;
  right: 0;
  padding: 2rem 2rem 3rem;
}
.facilityThumb .content h3 {
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 600;
}
.facilityThumb .content p {
  color: var(--white);
}
.facilityThumb .content .themeBtn {
  font-size: 14px;
  padding: 1em 2em;
}
.facilityThumb:hover {
  transform: scale(1.1);
  z-index: 1;
}
/* END: Facilities Sec */

/* /menuSection */
.menuSection .bgShape {
  position: absolute;
  left: 0;
  top: 0;
}
.menuSection ul {
  display: flex;
  gap: 2rem;
  align-items: center;
}
.menuSection ul li {
  display: grid;
  place-items: center;
  text-align: center;
}
.menuSection ul li p {
  color: var(--black);
}
.menuSection h3 {
  font-size: 4rem;
  font-weight: 600;
  color: var(--black);
  line-height: 1;
  margin-bottom: 1.5rem;
}

.menuSection h4 {
  font-size: 1.875rem;
  color: var(--black);
  font-weight: 500;
}
.menuSection .content > p {
  width: 75%;
  color: var(--black);
}
.menuSection .btn-group {
  gap: 1rem;
}

.proCard .themeBtn,
.menuSection .themeBtn {
  font-size: 1rem;
  background: url(../images/btnBlack.png) center/contain no-repeat;
  color: var(--white);
  padding-bottom: 1rem;
}
.proCard .themeBtn:hover,
.menuSection .themeBtn:hover {
  background: url(../images/btnWhite.png) center/contain no-repeat;
  color: var(--black);
  padding-bottom: 1rem;
}
.menuSection .slick-next::before,
.menuSection .slick-prev::before {
  display: none;
}
.menuSection .slick-next,
.menuSection .slick-prev {
  background: url(../images/btnBlack.png) center/100% 75% no-repeat;
  font-size: 2.5rem;
  width: 6.25rem;
  height: 75px;
  top: -2rem;
  color: var(--white);
}
.menuSection .slick-next:hover,
.menuSection .slick-prev:hover {
  color: var(--black);
  background: url(../images/btnWhite.png) center/100% 75% no-repeat;
}

.menuSection .slick-prev {
  left: auto;
  right: 6rem;
}
.faqSection figure img,
.menuSection figure img {
  -webkit-animation: rotateItem 5s normal linear infinite;
  animation: rotateItem 5s normal linear infinite;
}

/* productSection */
.proCard {
  text-align: center;
  padding-bottom: 6rem;
  background: url(../images/Cardbg.png) bottom center/contain no-repeat;
}
.proCard h3 {
  font-size: 1.875rem;
  font-weight: 600;
  line-height: 1;
  color: var(--black);
}
.proCard p {
  color: var(--black);
  font-weight: 400;
  width: 75%;
  margin: 0 auto 1rem;
  font-size: 1.125rem;
}
.proCard:hover .imgWrap img {
  -webkit-animation: rotateItem 5s normal linear infinite;
  animation: rotateItem 5s normal linear infinite;
}
/* testimonialSection */
.testimonialSection {
  padding: 10rem 0;
  background: url(../images/bgGrey.png) center / 100% 100% no-repeat;
}
.userImgList {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 5rem;
}
.userImgList .userImg {
  border-radius: 50%;
  margin-left: -3rem;
  position: relative;
  overflow: hidden;
  transition: 0.3s ease-in-out;
  border: 5px solid var(--white);
  width: 21.25rem !important;
  height: 21.25rem;
}
.testimonialSection .userImg img {
  width: 100%;
}

.userImgList .userImg:nth-child(3) {
  border-color: var(--theme-color);
  transform: scale(1.125);
  z-index: 1;
}
.testimonialCard {
  text-align: center;
  padding: 2rem;
}
.testimonialCard p {
  font-size: 1.375rem;
  font-weight: 400;
  color: var(--black);
}
.testimonialCard h3 {
  color: var(--theme-color);
  font-size: 1.875rem;
}
.testimonialCard h3 span {
  color: var(--black);
  font-size: 1.375rem;
  display: block;
}
.testimonialSection .slick-track {
  margin-left: 6rem;
}
/* faqSection */
.faqSection figure {
  text-align: left;
  background: url(../images/aboutBg.png) center / 100% no-repeat;
}
.faqCard {
  margin-bottom: 1rem;
}
.accordionStyle .faqCard .cardHeader button[aria-expanded="true"] .fas:before {
  content: "\f068";
}
.faqCard .cardHeader button {
  font-size: 1.375rem;
  color: #959595;
  font-weight: 600;
  line-height: 1;
  text-align: left;
  background-color: transparent;
  border: none;
  outline: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1rem 0rem;
}
.faqCard .cardHeader button i {
  font-size: 14px;
  color: var(--black);
}
.faqCard p {
  font-size: 1rem;
  text-align: left;
  margin: 0;
}
.accordionStyle .faqCard .cardHeader button[aria-expanded="true"] {
  color: var(--black);
}

footer {
  padding-top: 8rem;
  background: url(../images/footerBg.png) top/cover no-repeat;
}
footer .secHeading {
  color: var(--white);
  font-size: 4.6875rem;
}
footer form {
  display: flex;
  align-items: center;
  height: 75px;
  position: relative;
}
footer form input {
  width: 100%;
  height: 75px;
  border: 0;
  padding-left: 6rem;
  color: var(--black);
  background: url(../images/inputBg.png) center/cover no-repeat;
}
footer form input::placeholder {
  padding-left: 6rem;
}
footer form button {
  position: absolute;
  right: 0;
  width: 175px;
  height: 75px;
  font-size: 1.125rem;
  font-weight: 700;
  border: 0;
  background: url(../images/inputBtnBg.png) center/cover no-repeat;
  top: 0;
  bottom: 0;
}

.footerMenu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 2rem;
  margin-top: 3rem;
}
.footerMenu li a {
  color: var(--white);
  font-size: 1.25rem;
  line-height: 1;
}
.footerMenu li a:hover {
  color: var(--theme-color);
}

footer .socialIo {
  transform: none;
  position: unset;
  justify-content: flex-end;
  flex-direction: row;
}

.copyRight {
  align-items: center;
  margin-top: 4rem;
  padding: 1rem 0;
  border-top: 1px solid #707070;
}
.copyRight p {
  margin: 0;
  color: var(--white);
  font-size: 1.25rem;
  font-weight: 600;
}

.footerInfo {
  display: inline-block;
  color: var(--white);
  font-size: 1.25rem;
  font-weight: 600;
}

.footerInfo span {
  color: var(--theme-color);
}

.footerInfo:hover {
  color: var(--theme-color);
}

@keyframes rotateItem {
  0% {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
  25% {
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
  }
  50% {
    -webkit-transform: rotate3d(0, 0, 1, 180deg);
    transform: rotate3d(0, 0, 1, 180deg);
  }
  75% {
    -webkit-transform: rotate3d(0, 0, 1, 270deg);
    transform: rotate3d(0, 0, 1, 270deg);
  }
  100% {
    -webkit-transform: rotate3d(0, 0, 1, 360deg);
    transform: rotate3d(0, 0, 1, 360deg);
  }
}
