@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

* {
 padding: 0;
 margin: 0;
 box-sizing: border-box;
}

.inside-nav {
 display: flex;
 justify-content: space-between;
 position: absolute;
 width: 100%;
 border-bottom: 1px solid #ffffff4f;
}

.main-header {
 position: absolute;
 z-index: 100000;
 width: 100%;
 background: transparent;
}

.logo {
 /* background-color: violet; */
 padding: 1rem;
 width: 12%;
 display: flex;
 align-items: center;
}

.header2 .logo img {
 width: 100%;
 filter: invert(1) brightness(0.1);
 height: auto;
}

.hn-logo {
 height: 5rem;
}

.hn-logo img {
 height: 100%;
 filter: invert(1) brightness(0.1);
}

.logo img {
 width: 100%;
 height: auto;
}

.menu-links {
 display: flex;
 width: 55%;
 justify-content: space-between;
 padding: 1rem;
 /* background-color: yellowgreen; */
 align-items: center;
 color: #fff;
}

.menu-links div {
 margin: 0 1rem;

}

.drop-down-link {
 position: relative;
}

.drop-down {
 position: absolute;
 background-color: #fff;
 z-index: 1000000;
 display: flex;
 flex-direction: column;
 padding: 0 1rem;
 color: #000;
 margin: 0 !important;
 padding-top: 0;
 height: 0;
 width: 20vw;
 /* max-height: 0; */
 overflow: hidden;
 transition: all 0.3s ease;
 box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
 box-shadow: rgba(17, 12, 46, 0.15) 0px 48px 100px 0px;
}

.drop-down-link:hover .drop-down {
 height: max-content;
 overflow: auto;
 padding-top: 1rem;
}

.drop-down a {
 padding: 0.7rem !important;
 font-size: 14px;
 border-bottom: 1px solid #f4f4f4;
 transition: all 0.3s ease;
}

.drop-down a:hover {
 color: #ebb304;
 background-color: #f4f4f4;
}

.menu-links div,
.menu-links a {
 font-family: outfit;
 text-transform: uppercase;
 font-weight: 600;
 cursor: pointer;
}

.menu-links a {
 text-decoration: none;
}

.nav-right {
 width: 25%;
 display: flex;
}

.call-us {
 width: 75%;
 padding: 1rem 2rem;
 /* background: red; */
 display: flex;
 align-items: center;
 border-right: 1px solid #ffffff4f;
 border-left: 1px solid #ffffff4f;
}

.call-info {
 display: flex;
 flex-direction: column;
 row-gap: 5px;
 color: #fff;
}

.call-info p:nth-child(1) {
 font-family: outfit;
 font-size: 15px;
 text-transform: capitalize;
}

.call-info p:nth-child(2) {
 font-family: roboto;
 font-size: 18px;
}

.phone {
 font-size: 25px;
 padding: 10px;
 /* background: yellow; */
 color: #fff;
 border-radius: 50%;
 display: flex;
 margin-right: 24px;
}

.ham {
 width: 25%;
 padding: 0 1rem;
 /* background: rebeccapurple; */
 display: flex;
 justify-content: center;
 align-items: center;
}

.ham svg {
 font-size: 35px;
 color: #fff;
}

.fade-in {
 opacity: 1;
 transform: translateY(0);
}

.fade-out {
 opacity: 0;
 transform: translateY(-100%);
}

.header2 {
 position: fixed;
 top: 0;
 left: 0;
 background: #fff;
 padding: 0.5rem 1rem;
 z-index: 10000;
 width: 100%;
 box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
 display: flex;
 justify-content: space-between;
 align-items: center;
 /* opacity: 0; */
 /* transform: translateY(-100%); */
 transition: all 0.3s ease;
}

.header2.active {
 opacity: 1;
 /* transform: translateY(0%); */
}

.menu {
 /* width: 70%; */
 display: flex;
 justify-content: space-around;
 text-transform: uppercase;
 font-size: 14px;
 font-weight: 500;
 letter-spacing: 0.5px;
 font-family: 'Outfit';
}

/* 
.lisn-links.menu {
 width: 70%;
} */

.ham svg {
 font-size: 30px;
 color: #fff;
}

.ham {
 width: 100%;
}

.menu a {
 padding: 0 1.2rem;
}

.s-menu-links {
 display: flex;
 /* width: 55%; */
 justify-content: space-between;
 align-items: center;
}

.upper-isn {
 display: flex;
 justify-content: space-between;
 padding: 1rem 3rem;
 align-items: center;
 background-color: #000;
 color: #8C8F94;
 font-weight: 500;
}

.socials {
 display: flex;
}

.socials a {
 margin: 0 10px;
 font-size: 22px;
 color: #B0B6BC;
}

.contact {
 display: flex;
 color: #fff;
}

.c-info {
 display: flex;
 margin: 0 10px;
 align-items: center;

}

.c-info svg {
 color: #ebb304;
 font-size: 17px;
 margin-right: 9px;
}

.c-info p {
 font-size: 14px;
 /* font-weight: 400; */
 font-family: outfit;
 color: #8C8F94;
 transition: color 0.3s ease;
}

.c-info p:hover {
 color: #fff;
}

.lower-isn {
 display: flex;
 justify-content: space-around;
 align-items: center;
 padding: 1rem 0;
}

footer {
 padding: 4rem;
 background-color: #171717;
 padding-top: 8rem;
 padding-bottom: 0;
 background-image: url(/public/bg-images/bg-5.png);
}

.upper-footer {
 display: flex;
 justify-content: space-between;
 /* align-items: center; */
}

.lower-footer {
 background: black;
 padding: 3rem;
 color: #8C8F94;
 text-align: center;
 font-weight: 500;
}

.lower-footer a {
 color: #cccccc;
}

.uf-card {
 display: flex;
 flex-direction: column;
 padding: 1rem;
 width: 22%;
}

.uf-card h1 {
 font-family: 'Roboto';
 color: #fff;
 margin-bottom: 1rem;
 font-size: 33px;
 font-weight: 600;
}

.uf-card h2 {
 font-family: 'Roboto';
 color: #fff;
 text-transform: capitalize;
 padding-bottom: 1.5rem;
}

.uf-card p {
 font-family: 'Outfit';
 color: #8C8F94;
 line-height: 27px;
}

.hc {
 border-bottom: 2px solid #8c8f948f;
 margin-bottom: 1rem;
}

.perLoc {
 margin-top: 0.5rem;
 display: flex;
 flex-direction: column;
 row-gap: 6px;
}

.perLoc h3 {
 font-size: 17px;
 color: #8C8F94;
 font-weight: 500;
 text-transform: capitalize;
}

.perLoc h4 {
 font-size: 14px;
 color: #cccc;
 font-weight: 500;
 text-transform: capitalize;
}

.links {
 display: flex;
 flex-direction: column;
 row-gap: 10px;
 font-family: 'Outfit';
}

.links a {
 color: #8C8F94;
 text-decoration: none;
 font-size: 17px;
 transition: color 0.3s ease;
}

.links a:hover {
 color: #ebb304;
}

.fc-info {
 display: flex;
 /* margin-top: 1rem; */
 align-items: center;
}

.fc-info p {
 transition: color 0.3s ease;
 color: #cccccc;
 font-size: 16px;
}

.fc-info svg {
 font-size: 22px;
 margin-right: 10px;
 color: #ebb304;
}

.fc-info:hover p {
 color: #ebb304;
}

.ham.sub-ham {
 width: max-content;
 padding: 1rem;
 display: none;
}

.ham.sub-ham svg {
 color: #000;
}

/* hidden nav */
body,
html {
 overflow-x: hidden;
}

nav.og-header.fade-in {
 position: relative;
 z-index: 10000;
}

.hn-nav {
 position: fixed;
 background-color: #fff;
 height: 100vh;
 top: 0;
 left: 0;
 padding: 2rem;
 z-index: 100;
 width: 25vw;
 overflow-y: scroll;
 transform: translateX(-100%);
 transition: transform 0.3s ease;
}

.lower-isn .logo {
 /* background-color: violet; */
 padding: 0rem;
 width: 8%;
 display: flex;
 align-items: center;
}

.lower-isn .logo img {
 filter: invert(1) brightness(0.1);
}

.hn-nav.active {
 transform: translateX(0%);
}

.close {
 position: absolute;
 right: 10%;
 top: 6%;
 font-size: 28px;
}

.hn-comp {
 margin-top: 1.5rem;
 display: flex;
 flex-direction: column;
 row-gap: 13px;
}

.hn-comp {
 margin-top: 1.5rem;
}

.hn-menuLinks a {
 padding: 0.7rem;
 border-bottom: 1px solid #6a6f78;
 font-family: 'Outfit';
 text-transform: uppercase;
 font-size: 15px;
}

.hn-menuLinks {
 display: flex;
 flex-direction: column;
 margin: 2rem 0;
 display: none;
}

.hn-comp h2 {
 font-size: 21px;
 text-transform: capitalize;
 font-weight: 500;
 font-family: 'Roboto';
 border-bottom: 1px solid #6a6f78;
 padding-bottom: 0.6rem;
}

.hn-comp p {
 font-family: 'Outfit';
 color: #6a6f78;
}

.header2-ham {
 font-size: 20px;
 border: 1px solid;
 padding: 4px;
 border-radius: 3px;
 display: none;
}

.header2-hnMenu {
 position: absolute;
 right: 0;
 top: 100%;
 background: #fff;
 display: flex;
 flex-direction: column;
 width: 25vw;
 /* align-items: center; */
 text-align: center;
 overflow: hidden;
 padding: 0 1rem;
 height: 0;
 transition: all 0.3s ease;
}

.header2-hnMenu.active {
 height: 100vh;
 padding: 1rem;
}

.header2-hnMenu a {
 padding: 1rem;
 border-bottom: 1px solid;
}

.hn-cinfo {
 display: flex;
 flex-direction: column;
 row-gap: 7px;
}

.hnci {
 display: flex;
 align-items: center;
}

.hnci svg {
 margin-right: 7px;
 color: #6a6f78;
}


/* gallery css */

.modal {
 position: fixed;
 background: rgb(0 0 0 / 80%);
 top: 0;
 left: 0;
 width: 100%;
 height: 100%;
 display: flex;
 justify-content: center;
 align-items: center;
 z-index: 1000000000;
}

.gallery-img img {
 width: 30vw;
 height: 60vh;
 object-fit: cover;
}

.close2 {
 position: absolute;
 right: 2%;
 top: 17%;
 font-size: 39px;
 color: #fff;
}

.nav-btn {
 font-size: 24px;
 color: #000;
 padding: 0.2rem;
 background: #fff;
 border-radius: 50%;
 display: flex;
 justify-content: center;
 border: 1px solid #fff;
 position: absolute;
}

.nav-btn.prev {
 left: 20%;
}

.nav-btn.next {
 right: 20%;
}

.gallery-container {
 display: flex;
 flex-wrap: wrap;
 gap: 10px;
}

.gallery-card {
 width: 27%;
}

.gallery-card:hover {
 animation: wiggle 0.3s forwards 0.3s 1;
}

@keyframes wiggle {
 0% {
  rotate: -3deg;

 }

 100% {
  rotate: 3deg;
  scale: 1.05;
 }
}





@media (max-width : 1150px) {
 .call-us {
  padding: 1rem 1rem;
 }

 .menu-links div {
  margin: 0 0.7rem;
 }

}

.hero-section img {
 width: 100%;
 height: 100%;
 object-fit: cover;
}

.hero-section {
 position: relative;
 height: 50vh;
}

.heading-tag {
 position: absolute;
 left: 0;
 width: 100%;
 height: 100%;
 background: rgba(0, 0, 0, 0.5);
 top: 0;
 display: flex;
 align-items: center;
 justify-content: center;
 color: #fff;
 font-family: outfit;
 font-size: 35px;
 text-align: center;
}

.sa-left {
 width: 50%;
 padding: 1rem;
 font-family: 'Roboto';
 line-height: 25px;
 display: flex;
 flex-direction: column;
 row-gap: 30px;
}

.seo-about {
 padding: 4rem;
 display: flex;
}

.seo-right img {
 width: 100%;
}

.seo-right {
 width: 50%;
}

a {
 color: #171717;
 text-decoration: none;
}

.btn {
 background-color: #ebb032;
 font-family: outfit;
 font-size: 13px;
 font-weight: 600;
 text-transform: uppercase;
 padding: 1rem;
 text-decoration: none;
 color: #fff;
 letter-spacing: 0.5px;
 position: relative;
 overflow: hidden;
 transition: all 0.3s ease-in-out;
 width: 15vw;
 display: flex;
 justify-content: center;
}

.btn span {
 z-index: 1000;
}

.btn::before {
 position: absolute;
 content: "";
 height: 100%;
 width: 100%;
 background-color: #000;
 left: 0;
 top: 0;
 /* z-index: -1; */
 /* opacity: 0; */
 transform: translateX(-100%);
 transition: all 0.3s ease-in-out;
 transition: transform 500ms cubic-bezier(0.86, 0, 0.07, 1), -webkit-transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
 -webkit-transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
 transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
 transition: -webkit-transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
 -webkit-transition: -webkit-transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
 transition: transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
}

.btn-outline {
 border: 1px solid #ebb032;
 background-color: transparent;
 color: #ebb032;
}

.btn:hover::before {
 transform: translateX(0%);
 /* opacity: 1; */
 /* z-index: 10; */
}

.roboto {
 font-family: "Roboto", sans-serif;
 font-optical-sizing: auto;
 font-variation-settings:
  "wdth" 100;
}

.outfit {
 font-family: "Outfit", sans-serif;
 font-optical-sizing: auto;
}

.lower-footer {
 background: black;
 padding: 2rem;
 color: #8C8F94;
 text-align: center;
 font-weight: 500;
 display: flex;
 flex-direction: column;
 row-gap: 33px;
}

@media (max-width: 1024px) {
 .hn-menuLinks {
  display: flex;
 }

 .hn-nav {
  width: 35vw;
 }

 .menu-links {
  display: none;
 }

 .nav-right {
  width: 35%;
  display: flex;
 }

 .logo {
  width: 22%;
 }

 footer {
  padding: 2rem;
 }

 .lisn-links.menu {
  display: none;
 }

 .lower-isn {
  justify-content: space-between;
  padding: 1rem;
 }

 .btn.book-btn {
  display: none;
 }

 .ham.sub-ham {
  display: block;
 }

 .heading-tag {
  font-size: 30px;
 }
}

@media (max-width: 900px) {
 .header2-ham {
  display: flex;
 }

 .uf-card {
  width: 33%;
 }

 .upper-footer .uf-card:nth-child(1) {
  width: 100%;
 }

 .upper-footer {
  flex-wrap: wrap;
 }

 .menu a {
  padding: 0 1rem;
 }

 .upper-isn {
  padding: 1rem 1rem;
 }

 .hn-nav {
  width: 45vw;
 }

 .s-menu-links {
  display: none;
 }

 .gallery-img img {
  width: 40vw;
  height: 60vh;
  object-fit: cover;
 }

 .heading-tag {
  font-size: 25px;
 }

 .seo-about {
  padding: 2rem;
  display: flex;
 }
}

@media (max-width: 780px) {
 .logo {
  width: 27%;
 }

 .gallery-img img {
  width: 47vw;
 }

 .seo-about {
  flex-direction: column-reverse;
 }

 .sa-left {
  width: 100%;
 }

 .seo-right {
  width: 65%;
  align-self: center;
 }
}

@media (max-width: 700px) {
 .nav-right {
  width: 45%;
 }

 .uf-card {
  width: 50%;
 }

 .upper-footer .uf-card:nth-child(4) {
  width: 100%;
 }

 .contact {
  flex-direction: column;
 }

 .hn-nav {
  width: 55vw;
 }

 .nav-btn.prev {
  left: 7%;
 }

 .nav-btn.next {
  right: 7%;
 }

 .heading-tag {
  font-size: 20px;
 }
}

@media (max-width: 600px) {
 .gallery-img img {
  width: 60vw;
 }

 .header2-hnMenu {
  width: 45vw;
 }
}

@media (max-width: 550px) {
 .call-us {
  display: none;
 }

 .nav-right {
  width: fit-content;
 }

 .hn-nav {
  width: 100vw;
 }

 .upper-isn {
  display: none;
 }

 .seo-right {
  width: 100%;
 }
}

@media (max-width: 465px) {
 .logo {
  width: 42%;
  padding: 1rem 0.5rem;
 }

 footer {
  padding: 1rem;
 }

 .uf-card h1 {
  margin-bottom: 0.7rem;
  font-size: 28px;
 }

 .header2-hnMenu {
  width: 100vw;
 }

 .lower-isn .logo {
  width: 27%;
 }

 .heading-tag {
  font-size: 20px;
 }
}

@media (max-width: 400px) {
 .uf-card {
  width: 100%;
 }

 .gallery-img img {
  height: 40vh;
 }

 .nav-btn {
  font-size: 16px;
  padding: 0.1rem;
 }
}