@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
  --main-color: #004D5E;
  --black: #111;
  --white: #f9f9f9;
  --light-black: #555;
  --light-white: rgba(249, 249, 249, 0.85);
  --dark-bg: rgba(0, 0, 0, 0.85);
  --light-bg: #F5F5F5;
  --border: 0.3rem solid var(--main-color);
  --box-shadow: 0 1rem 2rem rgba(0, 77, 94, 0.3);
  --text-shadow: 0 0.3rem 0.8rem rgba(0, 77, 94, 0.3);
}

* {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none;
  border: none;
  text-decoration: none;
}

html {
  font-size: 62.5%;
  overflow-x: hidden;
  height: 100%;
}

html::-webkit-scrollbar {
  width: 1rem;
}

html::-webkit-scrollbar-track {
  background-color: var(--main-color);
}

html::-webkit-scrollbar-thumb {
  background-color: var(--main-color);
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: var(--light-bg);
  color: var(--black);
  line-height: 1.6;
  margin: 0;
  padding: 0;
  height: 100vh;
  overflow-x: hidden;
}

/* Section styling */
section {
  padding: 5rem 10%;
  background: var(--light-bg);
  border-radius: 1rem;
  box-shadow: var(--box-shadow);
}

/* Heading section */
.heading {
  background-size: cover !important;
  background-position: center !important;
  height: 35rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: var(--main-color);
  color: var(--white);
  text-shadow: var(--text-shadow);
  border-radius: 1rem;
}

.heading h1 {
  font-size: 9rem;
  text-transform: uppercase;
  color: var(--white);
  text-shadow: var(--text-shadow);
}

.heading h3 {
  font-size: 5.5rem;
  color: var(--white);
  text-transform: uppercase;
  margin-top: 1rem;
}

/* Buttons */
.btn {
  display: inline-block;
  background-color: var(--main-color);
  margin-top: 1rem;
  color: var(--white);
  font-size: 1.7rem;
  padding: 1.2rem 3rem;
  cursor: pointer;
  border-radius: 0.6rem;
  box-shadow: 0 0.6rem 1rem rgba(0, 77, 94, 0.3);
  transition: background-color 0.3s ease;
  font-weight: 700;
}

.btn:hover {
  background-color: #003544;
  box-shadow: 0 0.8rem 1.2rem rgba(0, 54, 68, 0.5);
}


/* Heading title */
.heading-title {
  text-align: center;
  margin-bottom: 3rem;
  font-size: 4rem;
  text-transform: uppercase;
  color: #007c91;;
  letter-spacing: 0.2rem;
}

/* Header styling */
.header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: var(--white);
  display: flex;
  padding: 2rem 4rem;
  box-shadow: var(--box-shadow);
  align-items: center;
  justify-content: space-between;
  border-bottom: 0.2rem solid var(--main-color);
}

/* Logo container */
.header .logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  color: var(--main-color);
}

/* Circular logo */
.header .logo-img {
  height: 80px;
  width: 80px;
  border-radius: 50%;
  object-fit: cover;
}

/* Hotel title + address stacked */
.header .hotel-title {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}

.header .hotel-title span {
  font-size: 2.5rem;
  font-weight: 900;
  letter-spacing: 0.1rem;
  color: var(--main-color);
}

.header .hotel-title .hotel-address {
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--main-color);
}




/* ===== Desktop styles ===== */
.header .navbar {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 2rem;
}

.header .navbar a,
.header .navbar .dropbtn {
  font-size: 2rem;
  color: var(--black);
  font-weight: 600;
  transition: color 0.3s ease;
  background: none;
  cursor: pointer;
  border: none;
}

.header .navbar a:hover,
.header .navbar .dropbtn:hover {
  color: var(--main-color);
}

.header .navbar .dropdown {
  position: relative;
  display: flex;
  align-items: center;
}

.header .navbar .dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 18rem;
  background-color: var(--white);
  box-shadow: 0 1rem 2rem rgba(0, 77, 94, 0.2);
  border-radius: 0.5rem;
  z-index: 1001;
}

.header .navbar .dropdown:hover .dropdown-content {
  display: block;
}

.header .navbar .dropdown-content a {
  display: block;
  padding: 1rem 2rem;
  font-size: 1.6rem;
  color: var(--black);
  background-color: var(--white);
  border-left: 4px solid transparent;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.header .navbar .dropdown-content a:hover {
  background-color: var(--main-color);
  color: var(--white);
}

/* Mobile menu toggled class */
.header .navbar.active {
  display: flex;
}

/* ===== Mobile Styles ===== */
@media (max-width: 768px) {
  .header .navbar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 75%;
    max-width: 320px;
    height: 100vh;
    flex-direction: column;
    background: var(--white);
    padding: 2rem;
    box-shadow: -2px 0 8px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
    overflow-y: auto;
    z-index: 1000;
  }

  /* Slide in when active */
  .header .navbar.active {
    right: 0;
  }

  .header .navbar a,
  .header .navbar .dropbtn {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    width: 100%;
    text-align: left;
  }

  .header .navbar .dropdown {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
  }

  .header .navbar .dropdown-content {
    position: relative;
    top: 0;
    left: 0;
    box-shadow: none;
    border-radius: 0;
    width: 100%;
    margin-left: 1rem;
    display: none; /* Hide dropdowns initially */
  }

  /* Show dropdown when parent .dropdown has .active */
  .header .navbar .dropdown.active .dropdown-content {
    display: block;
  }

  .header .navbar .dropdown-content a {
    padding: 1rem 1.5rem;
    font-size: 1.6rem;
    border-left: none;
  }

  #menu-btn {
    display: block;
    font-size: 2.5rem;
    color: var(--black);
    cursor: pointer;
    position: fixed;
    top: 1rem;
    right: 1rem;
    z-index: 1100;
  }

  /* Icon change: hamburger to cross */
  #menu-btn.fa-bars::before {
    content: "\f0c9"; /* Font Awesome bars */
  }

  #menu-btn.fa-times::before {
    content: "\f00d"; /* Font Awesome times */
  }
}


/* === Swiper Section Fixes === */

.home {
  padding: 0;
  margin: 0;
  width: 100%;
  height: 100vh;
}

.home-slider {
  height: 100%;
}

.swiper-wrapper {
  height: 100%;
}

.home .slide {
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover !important;
  background-position: center !important;
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0;
  border-radius: 0;
  box-shadow: var(--box-shadow);
  text-align: center;
}

.home .slide .content {
  width: 90%;
  max-width: 85rem;
  display: none;
  color: var(--black);
}

.home .swiper-slide-active .content {
  display: inline-block;
}

.home .slide .content span {
  display: block;
  font-size: 2.5rem;
  color: #ffffff;
  padding-bottom: 1rem;
  font-weight: 500; /* lighter for cursive elegance */
  font-family: 'Lobster Two', cursive; /* 👈 new cursive font */
  animation: fadeIn 0.3s linear backwards 0.2s;
}

.home .slide .content h3 {
  font-size: 3vw;
  color: #ffffff;
  text-transform: uppercase;
  line-height: 1;
  padding: 1rem 0;
  animation: fadeIn 0.3s linear backwards 0.4s;
  font-weight: 700; 

}

.home .slide .content .btn {
  animation: fadeIn 0.3s linear backwards 0.6s;
}

/* Swiper buttons */
.home .swiper-button-next,
.home .swiper-button-prev {
  bottom: 0;
  right: 0;
  height: 7rem;
  width: 7rem;
  background: var(--main-color);
  color: var(--white);
  box-shadow: var(--box-shadow);
  transition: background-color 0.3s ease;
}

.home .swiper-button-prev {
  right: 7rem;
}

.home .swiper-button-next:hover,
.home .swiper-button-prev:hover {
  background: #003544;
  color: var(--white);
}

.home .swiper-button-next:after,
.home .swiper-button-prev:after {
  font-size: 2rem;
}

/* Swiper Container */
.activities-swiper {
  width: 100%;
  padding: 40px 0;
  position: relative;
  /* Removed top/bottom padding if needed */
}

/* Remove scrollbar styling (no longer used) */
.swiper-scrollbar {
  display: none;
}

/* Slide Styling for Coverflow */
.activities-swiper .swiper-slide {
  width: 300px; /* Fixed width for coverflow effect */
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.3s ease;
}

/* Activity Card Design */
.activity-card {
  width: 100%;
  max-width: 280px;
  height: 400px;
  padding: 24px;
  background: #ffffff; /* Clean white background */
  border-radius: 16px;
  box-shadow: 0 6px 15px rgba(0, 100, 100, 0.1); /* Soft teal-tinted shadow */
  border: 2px solid #007c91; /* Teal border matching the website */
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.activity-card:hover {
  box-shadow: 0 10px 25px rgba(0, 100, 100, 0.2); /* Slight hover effect */
}

.activity-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 16px;
}

.activity-card h3 {
  font-size: 2rem;
  color: #002f35; /* Dark teal for contrast */
  font-weight: bold;
  margin: 0;
}

.activities-swiper {
  position: relative; /* Needed for absolute arrows positioning */
  padding-left: 80px;  /* Space for left arrow */
  padding-right: 80px; /* Space for right arrow */
  overflow: visible; /* Make sure arrows outside boundaries are visible */
}

.activities-prev,
.activities-next {
  position: absolute;
  top: 50%;
  width: 40px;
  height: 40px;
  margin-top: -20px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  color: #007c91;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 10;
  transition: background 0.3s ease, color 0.3s ease;
  overflow: visible;
}

.activities-prev {
  left: 0; /* Changed from -60px */
}

.activities-next {
  right: 0; /* Changed from -60px */
}

.activities-prev:hover,
.activities-next:hover {
  background: #007c91;
  color: #fff;
}



/* Full-width section */
.home-about {
  width: 100%;
  padding: 6rem 2rem;
  background-color: #f9f9f9;
  box-sizing: border-box;
}


/* Flex container inside */
.home-about .container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-direction: row; /* important */
  gap: 3rem;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap; /* prevent stacking unless mobile */
}

/* Image on the left */
.home-about .image {
  flex: 1 1 50%;
}

.home-about .image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  display: block;
}

/* Text on the right */
.home-about .content {
  flex: 1 1 50%;
  background-color: #fff;
  border-radius: 10px;
  padding: 3rem;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
  box-sizing: border-box;
}

/* Text styles */

.home-about h1{
  text-align: left;
  margin-bottom: 3rem;
  font-size: 4rem;
  text-transform: uppercase;
  color: #007c91;;
  letter-spacing: 0.2rem;
}

.home-about h2 {
  font-size:2.5rem;
  margin-bottom: 15px;
  color: #333;
}




.home-about .content p {
  font-size: 1.6rem;
  color: var(--black);
  line-height: 2.6rem;
  padding: 1rem 0;
}

/* Button */
.btn {
  border-radius: 0.8rem;
  font-weight: 700;
  font-size: 1.7rem;
  padding: 1.2rem 3rem;
  background-color: var(--main-color);
  color: var(--white);
  box-shadow: 0 0.6rem 1rem rgba(0, 77, 94, 0.3);
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.btn:hover {
  background-color: #003544;
  box-shadow: 0 0.8rem 1.2rem rgba(0, 54, 68, 0.5);
}

/* Initial state: hidden and shifted */
/* Image starts shifted LEFT, content shifted RIGHT */
.animate-section .image {
  opacity: 0;
  transform: translateX(-50px); /* image slides from left */
  transition: opacity 2.5s ease, transform 2.5s ease;
}

.animate-section .content {
  opacity: 0;
  transform: translateX(50px); /* content slides from right */
  transition: opacity 2.5s ease, transform 2.5s ease;
}

.animate-section.visible .image {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.3s;
}

.animate-section.visible .content {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.6s;
}


/* Services box grid styling */
.services .box-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  padding: 3rem 2rem;
  background-color: var(--white);
  border-radius: 1rem;
  width: 100%;
  margin: 0;
  box-shadow: var(--box-shadow);
}


.services .box-container .box {
  background-color: var(--light-bg);
  border-radius: 1rem;
  box-shadow: 0 0 15px rgba(0, 77, 94, 0.1);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: var(--black);
}

.services .box-container .box:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 25px rgba(0, 77, 94, 0.15);
}

.services .box-container .box img {
  height: 80px;
  margin-bottom: 1rem;
}

.services .box-container .box h3 {
  font-size: 1.8rem;
  color: var(--main-color);
  font-weight: 700;
}

/* Button container */
.services .box-container .button-box {
  grid-column: 1 / -1; 
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: transparent;
  box-shadow: none;
  padding: 2rem 0;
  transform: none;
}

/* Prevent any hover effects */
.services .box-container .button-box:hover {
  box-shadow: none;
  transform: none;
}



.accommodation-highlight {
  padding: 60px 20px;
  background-color: #f5f5f5;
}

.accommodation-highlight .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
}

.accommodation-highlight .content {
  flex: 1 1 500px;
  padding: 20px;
}

.accommodation-highlight .content h1 {
  
  text-align: left;
  margin-bottom: 3.5rem;
  font-size: 4rem;
  text-transform: uppercase;
  color: #007c91;;
  letter-spacing: 0.2rem;
}

.accommodation-highlight .content h3 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: #333;
}

.accommodation-highlight .content p {
  font-size: 1.8rem;
  color: #555;
  margin-bottom: 25px;
  line-height: 2.5rem;
}

.accommodation-highlight .content .btn {
  background-color: #007c91;
  color: white;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.accommodation-highlight .content .btn:hover {
  background-color: #005e6e;
}

.accommodation-highlight .image {
  flex: 1 1 500px;
  padding: 20px;
}

.accommodation-highlight .image img {
  width: 100%;
  border-radius: 10px;
  object-fit: cover;
}

.mySwiper {
  width: 300px;
  height: 400px;
  margin: auto;
}

.swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

/* Optional: ensure container doesn’t squish swiper */
.accommodation-highlight .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2rem;
}

.accommodation-highlight .content {
  flex: 1 1 300px;
}

.mySwiper {
  flex: 1 1 300px;
}




.home-packages{
	background:var(--light-bg);
}

.home-packages .box-container{
	display:grid;
	grid-template-columns:repeat(auto-fit, minmax(30rem, 1fr));
	gap:2rem;
}

.home-packages .box-container .box{
	border:var(--border);
	box-shadow:var(--box-shadow);
	background:var(--white);
}





.home-packages .box-container .box .image{
	height:25rem;
	overflow:hidden;
}

.home-packages .box-container .box .image img{
	height:100%;
	width:100%;
	object-fit:cover;
	transition:2s linear;
}

.home-packages .box-container .box .content{
	padding:2rem;
	text-align:center;
}

.home-packages .box-container .box .content h3{
	font-size:2.5rem;
	color:var(--black);
}

.home-packages .box-container .box .content p{
	font-size:1.5rem;
	color:var(--light-black);
	line-height:2;
	padding:1rem 0;
}

.home-packages .load-more{
    text-align:center;
	margin-top:2rem;
}


/* Locate Us Section */
.locate-us {
  padding: 5rem 2rem;
  background-color: #f9f9f9;
  text-align: center;
}

.locate-us .content {
  max-width: 800px;
  margin: 0 auto 3rem auto;
}


.locate-us .map-container {
  max-width: 1000px;
  margin: 0 auto;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
  border-radius: 10px;
  overflow: hidden;
}

.locate-us .content p{
  font-size: 1.8rem;
  color: var(--black);
  line-height: 2.6rem;
  padding: 1rem 0;
}



body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  background-color: #f8f9fa; /* Matches Facilities page */
  color: #222;
}

.about {
  display: flex;
  align-items: stretch;
  gap: 2rem;
  padding: 3rem 2rem;
  margin: 2rem auto;
  background-color: rgba(255, 255, 255, 0.95); /* White pop-up effect */
  border-radius: 10px;
  max-width: 1200px;
  box-shadow: 0 0 20px rgba(0,0,0,0.05); /* Subtle shadow */
  flex-wrap: wrap; /* Makes it responsive */
}

/* Left Column: Images Vertical Stack */
.image-vertical {
  flex: 1 1 20rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
}

.image-vertical img {
  width: 100%;
  flex-grow: 1;
  object-fit: cover;
  border-radius: 1rem;
  box-shadow: 0 0 12px rgba(0,0,0,0.1);
}

/* Right Column: Content */
.about .content {
  flex: 1 1 40rem;
  text-align: left;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: stretch;
  background-color: transparent; /* No background to match container */
}

.about .content h3 {
  font-size: 3.5rem;
  color: var(--primary-color, #005f7f); /* Match icon blue */
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.about .content p {
  font-size: 1.8rem;
  color: #222;
  line-height: 2.8rem;
  margin-bottom: 1.5rem;
  max-width: 100%;
  margin-left: 0;
  margin-right: 0;
}

.about .content h5 {
  font-size: 2rem;
  color:  var(--primary-color, #005f7f);
  margin-top: 3rem;
  font-weight: 600;
}

.about .btn {
  display: block;
  margin: 2rem 0;
  width: fit-content;
  padding: 0.8rem 2rem;
  font-weight: bold;
  background-color: var(--main-color);
  color: white;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.about .btn:hover {
  background-color:#004D5E ;
}
.about i {
  color: #005f7f;
  font-size: 3rem; /* Adjust as needed */
  margin-bottom: 1rem;
}











.footer{
   background-color: #004D5E;
   background-size:cover;
   background-position:center;
   background-attachment:fixed;
}



.footer .box-container{
	display:grid;
	grid-template-columns:repeat(auto-fit, minmax(25rem, 1fr));
	gap:3rem;
}

.footer .box-container .box h3{
	color:var(--white);
	font-size:2.5rem;
	padding-bottom:2rem;
}

.footer .box-container .box a {
   display: flex;
   align-items: center;
   color: #f0f0f0;
   font-size: 1.6rem;
   font-weight: 400;
   margin-bottom: 1.2rem;
   text-decoration: none;
   transition: all 0.3s ease;
   text-transform:none;
}

.footer .box-container .box a:hover {
   color: #40B5AD;
   transform: translateX(5px);
}

.footer .box-container .box i {
   margin-right: 1rem;
   font-size: 1.8rem;
}

   .credit{
	width:100%;
	background-color:#2c2f33;
	color:#ffffff;
	text-align:center;
	padding:1rem 0;
	font-size:1.4rem;
	margin-top:0;
}  


/* === Pop-in Animation === */
@keyframes popFadeIn {
  0% {
    opacity: 0;
    transform: scale(0.95) translateY(20px);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.animate-pop {
  animation: popFadeIn 0.8s ease-out forwards;
  opacity: 0; /* Ensures element is invisible until animation starts */
}


	





/* Responsive styles */
@media (max-width: 768px) {
   .about {
      flex-direction: column;
      gap: 4rem;
   }

   .about .content {
      padding: 1rem;
   }
   
    .header {
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem 2rem;
  }

  .header .logo {
    flex-direction: row;
    align-items: center;
    font-size: 1.8rem;
    gap: 1rem;
    width: 100%;
    margin-bottom: 1rem;
  }

  .header .logo-img {
    height: 50px;
  }
  
   .home {
    height: 100vh;
    padding-top: 0;
  }

  .home .slide {
    padding: 0 1rem;
    text-align: center;
  }

  .home .slide .content {
    width: 100%;
  }

  .home .slide .content span {
    font-size: 1.5rem;
  }

  .home .slide .content h3 {
    font-size: 5vw; /* Bigger on mobile */
    padding: 0.5rem 0;
  }

  .home .slide .content .btn {
    font-size: 1.4rem;
    padding: 0.8rem 1.5rem;
  }
  
    .swiper-button-next,
  .swiper-button-prev {
    top: auto;
    bottom: 20px;         /* Position near the bottom */
    transform: translateY(0);
    width: 40px;
    height: 40px;
    background-color: #004d5a;
    color: white;
    border-radius: 4px;
    z-index: 10;
  }

  .swiper-button-prev {
    left: 10px;  /* Move left arrow to left side */
  }

  .swiper-button-next {
    right: 10px; /* Move right arrow to right side */
  }

  /* Shrink arrow icons */
  .swiper-button-prev::after,
  .swiper-button-next::after {
    font-size: 1.2rem;
  }
}
}


/*media queries*/
@media(max-width:1200px){
	
	section{
		padding:3rem 5%;
	}
}

@media(max-width:991px){
	
	html{
		font-size:55%;
	}
	
	section{
		padding:3rem 2rem;
	}
	
	.home .slide .content h3{
		font-size:6vw;
	}
}

@media(max-width:768px){
	
	#menu-btn{
	display:inline-block;
	transition:.2s linear;

    }

    #menu-btn.fa-times{
		transform:rotate(180deg);
	}
	
	.header .navbar {
		position:absolute;
		top:99%; left:0; right:0;
		background-color:var(--white);
		border-top:var(--border);
		padding:2rem;
		transition:.2s linear;
		clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
	}
	
	.header .navbar.active{
	clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
	}
	
	.header .navbar a{
		display:block;
		margin:2rem;
		text-align:center;
	}
	
	 .home-about .container {
    flex-direction: column;
    text-align: center;
  }

  .home-about .content {
    padding: 2rem 1rem;
  }

  .home-about h1 {
    text-align: center;
  }
}

}
@media(max-width:450px){
	
	html{
		font-size:50%;
	}

}

@media (max-width: 768px) {
  .header {
    padding: 1rem 2rem;
  }
  .header .logo {
    font-size: 1.6rem;
  }
  .header .logo-img {
    height: 45px;
  }
}


.heading-title{
	font-size:3.5rem;
}

