@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=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
:root {
  --white: #fff;
  --black: #000;
  --theme-color: #759054;
}
html {
  scroll-behavior: smooth;
  height: 100%;
}

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

.df {
  display: flex;
}

.aic {
  align-items: center;
}
.ais {
  align-items: flex-start;
}
.aie {
  align-items: flex-end;
}

.jcc {
  justify-content: center;
}

.jcsb {
  justify-content: space-between;
}

.frr {
  flex-direction: row-reverse;
}

.fw {
  flex-wrap: wrap;
}

.fnw {
  flex-wrap: nowrap;
}

.gap1 {
  gap: 1rem;
}

.gap2 {
  gap: 2rem;
}

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

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;
  width: 100%;
  padding: 1rem 0;
  transition: 0.3s ease-in-out;
}

header.sticky {
  position: fixed;
}

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

.menu-main-menu-container {
    margin: 0 auto;
}

.navbar-nav {
  gap: 1rem 2rem;
}
.navbar-nav .nav-item .nav-link {
  font-size: 1rem;
  font-weight: 400;
  color: var(--white);
  text-transform: uppercase;
  line-height: 1;
  padding: 0;
  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);
}

.main-slider {
  position: relative;
}
.carousel-caption {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.main-slider h1 {
  font-size: 6.875rem;
  font-family: "Playfair Display", serif;
  color: var(--white);
  font-weight: 500;
  line-height: 1;
  margin-bottom: 0;
  text-transform: uppercase;
  /*text-shadow: 0 3px 20px rgba(0, 0, 0, 0.8);*/
}
.main-slider h1 span {
    display: block;
    font-size: 3rem;
}
.main-slider p {
  color: var(--white);
  font-size: 2.125rem;
  line-height: 1;
  font-family: "Playfair Display", serif;
  /*text-shadow: 0 3px 20px rgba(0, 0, 0, 0.8);*/
}
.callBtn {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.875rem;
  color: var(--white);
  font-family: "oswald";
  font-weight: 600;
}
.callBtn i {
  height: 3.75rem;
  width: 3.75rem;
  display: inline-grid;
  place-items: center;
  color: var(--white);
  font-size: 1.5rem;
  border-radius: 50%;
  background: var(--theme-color);
}
.callBtn:hover {
  color: var(--theme-color);
}
.callBtn:hover i {
  color: var(--theme-color);
  background: var(--white);
}
.socialList {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 5rem;
  top: 50%;
  z-index: 1;
  transform: translateY(-50%);
}
.socialList li a {
  font-size: 1.25rem;
  display: inline-block;
  color: var(--white);
}
.socialList li a:hover {
  color: var(--theme-color);
}
.socialList li strong {
  color: var(--white);
  font-size: 1.125rem;
  font-weight: 400;
  display: inline-block;
  writing-mode: vertical-lr;
  transform: scale(-1);
}
.socialList li span.line {
  height: 100px;
  width: 1px;
  background: var(--white);
  display: inline-block;
}
.main-slider .btmShape {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.main-slider .btn-group {
  position: absolute;
  right: 5rem;
  bottom: 5rem;
  gap: 2rem;
  z-index: 1;
}
.themeBtn {
  display: inline-block;
  background: var(--theme-color);
  color: var(--white);
  font-size: 1rem;
  font-weight: 500;
  padding: 1em 1.5em;
  border-radius: 5px;
  border: 2px solid var(--theme-color);
  text-transform: uppercase;
}
.themeBtn:hover {
  color: var(--theme-color);
  background: var(--white);
}

/* About Section */
.abtImg {
  position: relative;
  display: block;
}
.abtImg::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 6rem;
  z-index: -1;
  max-width: 560px;
  max-height: 640px;
  margin: 0 auto;
  animation: pulse infinite 3s;
  border: 15px solid var(--theme-color);
}
.abtImg .aboutImg1 {
  border-top-left-radius: 152px;
}
.abtImg .aboutImg2 {
  display: block;
  margin-top: -20rem;
  position: relative;
  margin-left: auto;
  border-top: 10px solid var(--white);
  border-left: 10px solid var(--white);
  border-bottom-right-radius: 110px;
}
.aboutSec p {
  color: #828282;
  line-height: 2;
  font-size: 1.125rem;
}
.aboutSec h2 {
  font-size: 5.3125rem;
  font-weight: 500;
  color: var(--theme-color);
  line-height: 1;
  position: relative;
  text-transform: uppercase;
  font-weight: 500;
  font-family: "Playfair Display", serif;
}
.aboutSec h2 span {
  display: block;
  color: var(--black);
  font-size: 2.5rem;
}

.secHeading {
  font-family: "Playfair Display", serif;
  font-size: 3.125rem;
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
}
.secHeading span{
  display: block;
  font-size: 1.375rem;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
}
/* serviceSection */
.serviceSection {
  background: #f8f8f8;
}
.servCard {
  margin-bottom: 3rem;
}
.servCard figure {
  overflow: hidden;
}
.servCard figure img {
  transition: 0.3s ease-in-out;
}
.servCard:hover figure img {
  transform: scale(1.125);
}
.servCard .content {
  padding: 0.75rem 1rem;
}
.servCard .content h3 {
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--black);
  line-height: 1;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
}
.servCard .content p {
  color: #828282;
  font-size: 1rem;
  margin-bottom: 0.5rem;
}
.servCard .content .themeBtn {
  background: var(--white);
  font-size: 1rem;
  padding: 0.65em 1em;
  color: var(--theme-color);
}
.servCard .content .themeBtn:hover {
  background: var(--theme-color);
  color: var(--white);
}
.serviceSection .swiper-pagination {
  margin-top: 4rem;
}
.swiper-pagination-bullet {
  background: var(--black);
  opacity: 0.3;
}
.swiper-pagination-bullet-active {
  background: var(--theme-color);
  opacity: 1;
  transform: scale(1.25);
}

/* stepsSection */

.stepCard {
  text-align: center;
  position: relative;
}
.stepCard .count {
  position: absolute;
  font-size: 1.375rem;
  color: var(--black);
  font-weight: 400;
  left: 0;
  top: 0;
  font-family: "Playfair Display", serif;
}
.stepCard .iconWrap {
  height: 10.75rem;
  width: 10.75rem;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  margin-bottom: 3rem;
  position: relative;
  background: linear-gradient(180deg, #759054 0%, #3b482a 100%);
}
.stepCard .iconWrap img {
  transition: 0.3s ease-in-out;
}
.stepCard .iconWrap::before {
  content: "";
  width: 13.875rem;
  height: 13.875rem;
  border-radius: 50%;
  position: absolute;
  left: -1.5rem;
  top: -1.5rem;
  border: 2px dashed #707070;
}
.stepCard h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--black);
  text-transform: uppercase;
}
.stepCard h3 p {
  margin: 0;
}
.stepCard .line {
  position: absolute;
  left: 100%;
  top: 5rem;
}
.stepCard:hover .iconWrap img {
  transform: scale(-1) rotate(360deg);
}

/* pkgSection */
.pkgSection {
  padding: 0;
  background: var(--theme-color);
}
.contactSec .themeBtn,
.gallerySec .themeBtn,
.pkgSection .themeBtn {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
  margin-top: 1rem;
}
.contactSec .themeBtn:hover,
.gallerySec .themeBtn:hover,
.pkgSection .themeBtn:hover {
  background: var(--white);
  color: var(--theme-color);
}
.pkgSection .content-box {
  padding-left: 4rem;
  max-width: 75%;
}
.pkgSection .secHeading {
  color: var(--white);
}
.pkgSection p {
  color: var(--white);
  font-size: 1.125rem;
}
.pkgSection ul li {
  font-size: 1rem;
  line-height: 2;
  font-weight: 400;
  color: var(--white);
}
.pkgSection ul li::before {
  content: "";
  height: 15px;
  width: 15px;
  margin-right: 10px;
  display: inline-block;
  background: url(../images/tick.png) left center/contain no-repeat;
}

/* gallerySec */
.gallerySec {
  padding: 8rem 0 0;
}
.galleryWrap {
  display: block;
  overflow: hidden;
  /*margin-bottom: 1.5rem;*/
}
.galleryWrap img {
  transition: 0.3s ease-in-out;
}
.galleryWrap:hover img {
  transform: scale(1.1125);
}

.gallerySec .col:nth-child(even) {
  margin-top: -6rem;
}

/* Testimonial Section */
.testmonialCard {
  /* border: 1px solid #e8e8e8; */
  /* border-radius: 16px; */
  padding: 1.5rem;
  margin: 1rem 0.5rem;
  transition: 0.3s ease-in-out;
  text-align: center;
}
.testmonialCard .userInfo {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  justify-content: center;
}
.testmonialCard .userInfo h3 {
  font-size: 1.375rem;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 0;
}
.testmonialCard .userInfo h3 span {
  font-size: 1.125rem;
  display: block;
  font-weight: 300;
}
.testmonialCard .content > span {
  font-size: 10px;
  color: var(--black);
}
.testmonialCard p {
  font-size: 1rem;
  margin-bottom: 0;
  color: var(--black);
}
/*.testmonialCard:hover {*/
/*  box-shadow: 0px 3px 20px #0000001a;*/
/*}*/

/* Contact Section */
.contactSec {
  background: url(../images/cntactBg.jpg) bottom center/cover no-repeat;
  clip-path: ellipse(70% 100% at 50% 0%);
}
.contactSec .secHeading {
  color: var(--white);
}
.contactSec .form-group .form-control {
  border-radius: 10px;
  border: none;
  background: var(--white);
  height: 5rem;
  font-size: 1.125rem;
  padding-left: 1.5rem;
  color: var(--black);
  transition: 0.4s ease-in-out;
  line-height: 1;
}
.contactSec .form-group {
  margin-bottom: 2rem;
}

.contactSec .form-group textarea.form-control {
  height: 180px;
  padding-top: 1rem;
}

.contInfo {
  padding: 0;
  list-style: none;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
}
.infoWrap {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 12px;
}
.contInfo li a {
  font-weight: 500;
  color: var(--white);
  font-size: 1.125rem;
}
.contInfo li {
  display: flex;
  flex-direction: column;
  gap: 1rem 0;
  flex: 1;
  /* text-align: center; */
}
.contInfo li strong {
    font-weight: 600;
    display: block;
    text-transform: capitalize;
}

.contactSec .socialIo {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 4rem 0 -4rem;
}
.contactSec .socialIo li a {
  height: 3.5rem;
  width: 3.5rem;
  border-radius: 50%;
  line-height: 1;
  font-size: 1.125rem;
  display: grid;
  place-items: center;
  color: var(--white);
  transition: 0.3s ease-in-out;
}
.contactSec .socialIo li a:hover {
  background-color: var(--white);
  color: var(--secondary);
}

/* Footer css */
footer {
  padding-top: 4rem;
}
footer .footerMenu {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 2rem;
}
footer .footerMenu li a {
  font-size: 1.125rem;
  color: #2f3921;
  font-weight: 500;
  line-height: 1;
  text-transform: uppercase;
}
footer .footerMenu li a:hover {
  color: var(--theme-color);
}
.copyRight {
  border-top: 1px solid rgba(112, 112, 112, 0.3);
  padding: 1.5em 0;
  margin-top: 3em;
  position: relative;
}
.copyRight p {
  margin: 0;
  color: #2f3921;
  font-size: 1rem;
  font-weight: 400;
  text-align: center;
}

/*Inner Pages Css Start*/

.aboutInner figure img{
    border-radius: 10px;
}

.galleryInner .columnWrap a img { 
    border-radius: 10px;
        object-fit: cover;
}

.galleryInner {
    padding: 5rem 0;
}

.servicesInner h2 {
    font-size: 3.4375rem;
    font-family: 'Playfair Display';
}

.servicesInner figure Img {
    border-radius: 10px;
}

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

.pkgInner p {
    color: #828282;
}
.pkgInner ul li {
    color: #828282;
}

.pkgInner {
    background: unset;
}

.pkgInner .content-box {
    padding-left: 1rem;
    max-width: 100%;
}

.pkgInner .secHeading {color: var(--black);}

.pkgInner figure img {
    border-radius: 10px;
}

.pkgInner {
    padding: 6rem 0;
}
.pkgInner .themeBtn {
    background-color: var(--theme-color);
    border: 2px solid var(--theme-color);
}

.mainWrap figure {
    background-color: var(--theme-color);
    width: 8rem;
    height: 8rem;
    border-radius: 100px;
    display: grid;
    place-items: center;
    margin: 0 auto;
}

.mainWrap {
    text-align: center;
}

.mainWrap h4 {
    font-size: 1.875rem;
    color: var(--black);
    font-weight: 400;
    margin-top: 12px;
}

.mainWrap h5 {
    font-size: 1.375rem;
    color: #828282;
    font-weight: 300;
}

.contctBtn .themeBtn {
    padding: 1em 3.5em;
}
.innerBan .btmShape {
    bottom: -1px;
}
.termFotr {
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 2rem;
}

.termFotr li a {
    color: #000;
    font-size: 1.2rem;
    font-weight: 400;
}
.privaySec ul {
    list-style-type: disc;
    list-style-position: inside;
    line-height: 2;
    color: #828288;
    margin: 1rem 0;
}

.privaySec h4 {
    font-size: 2rem;
    font-weight: 500;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.privaySec a {
    color: #000;
    font-weight: 500;
}
.columnWrap img {
    width: 100%;
    height: 510px;
}
.galleryInner .galleryWrap {
    margin-bottom: 1.5rem;
}
/* Begin: Instagram */

.instaSec {
    position: relative;
}


.instaIco i {
    font-size: 2rem;
    color: var(--black);
}

.instaCard {
    position: relative;
}

/* .instaCard .content {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: 0.3s ease-in-out;
	transform-origin: center;
	transform: scale(0);
	background-color: rgba(9, 31, 69, 0.3);
} */

.instaCard a {
    font-size: 4rem;
    color: var(--white);
}

.instaCard:hover .content {
    transform: scale(1);
}
.instaCard img {
    width: 100%;
    height: 450px;
}

/* END: Instagram */

