/*=============== GOOGLE FONTS ===============*/
@import url("https://fonts.googleapis.com/css2?family=Roboto&display=swap");
/*=============== VARIABLES CSS ===============*/
:root {
  --header-height: 6rem;
  /*========== Colors ==========*/
  /*Color mode HSL(hue, saturation, lightness)*/
  --first-color: rgb(130, 11, 13);
  
  --first-color-lighten: rgb(130, 11, 13);
  --title-color: #000000;
  --text-color: #000000bb;
  --body-color: rgb(255, 255, 255); 
  --light-grey-bg-color:rgba(255, 255, 255, 0.546);
  /*========== Font and typography ==========*/
  /*.5rem = 8px | 1rem = 16px ...*/
  --body-font: "Hind", sans-serif;
  --normal-font-size: .938rem;
  --small-font-size: .813rem;
  --smaller-font-size: .75rem;
  --letter-spacing: 2px;
  /*========== Font weight ==========*/
  --font-medium: 500;
  --font-semi-bold: 600;
  /*========== z index ==========*/
  --z-tooltip: 10;
  --z-fixed: 100;
  /*===========BOX ===============*/
  --box-shadow-blk: 1px 1px 5px var(--text-color);
  --box-shadow-blk-section: 1px 1px 10px var(--text-color);
  --button-border-white: 1px solid rgb(255, 255, 255); ;
  --button-border-faint: 1px solid rgba(255, 255, 255, 0.08); 
}

@media screen and (min-width: 1024px) {
  :root {
    --normal-font-size: 1.2rem;
    --small-font-size: 1rem;
    --smaller-font-size: .875rem;
  }
}

/*=============== BASE ===============*/
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

body {
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  background-color: var(--body-color);
  color: var(--text-color);
}

.falling__Cherry__Container {
  height: 100%;
  width: 100%;
  padding-bottom: 45px;
  position: absolute;
  background: radial-gradient(#000000, #000); /*grey hex = #8d8d8d*/
  z-index: 0;
  overflow-y: auto;
}
  
h1,h2,h3,h4,h5,h6 {
  padding-left: 10px;
  padding-right: 10px;
  padding-top: 10px;
  padding-bottom: 10px;
}
 
h1 {
  margin: 10px auto;
  font-size: 2rem;
  color: var(--first-color-lighten);
}

.transparent_bg{
  position: relative;
  box-sizing: border-box;
  margin: 0 auto;
  top: 50px;
  max-width: 400px;
  height: 300px;
  background-color: rgba(0, 0, 0, 0.2);
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.8);
}

.transparent_bg button{
  max-width: 200px;
}

h2 {
  font-size: 1.8rem;
}

h3 {
  font-size: 1.6rem;
}

h4 {
  font-size: 1.4rem;
}

h5 {
  font-size: 1.2rem;
}

h6 {
  font-size: 1rem;
}

p{
  padding: 10px;
  text-decoration: none;
  font-size: 1.2rem;
}

ul {
  list-style: none;
}

li {
    list-style-type: none ;
}

a {
  text-decoration: none;
}

#box {
	max-width: 800px;
	text-align:center;
	width: 100%;
	margin: 0 auto;
	box-sizing: border-box;
	box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.305);
	border-radius: 10px;
}

form {
	display: flex;
	justify-content: center;
	flex-direction: column;
	align-items: center;
}

input[type="text"], 
input[type="password"],
input[type="email"],
input[type="week"],
input[type="month"],
input[type="file"]{
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: none;
	width: 100%;
	max-width: 400px;
	border-radius: 0px;
  border-top: none;
  border-left: none;
  border-right:none;
	border-bottom: 1px solid var(--first-color);
	padding: 10px;
  font-size: 16px;
}

input:focus::before,
input:valid::before {
    display: none;
}

input:hover {
	cursor: pointer;
	box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.5);
	transition: .5s;
}

/* Normalize the appearance */
select,
input[type="date"],
input[type="time"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: none;
    border-top: none;
    border-left: none;
    border-right:none;
    border-bottom: 1px solid var(--first-color);
    padding: 5px;
    font-size: 16px;
    border-radius: 0px;
    width: 100%;
    max-width: 400px; /* Add this line */
    box-sizing: border-box;
}

/* Custom styling for date input */
input[type="date"] {
    position: relative;
}

input[type="date"]::before {
    content: attr(placeholder);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 10px;
    color: #999;
    pointer-events: none;
}

input[type="date"]:focus::before,
input[type="date"]:valid::before {
    display: none;
}

/* Custom styling for time input */
input[type="time"] {
    position: relative;
}

input[type="time"]::before {
    content: attr(placeholder);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 10px;
    color: #999;
    pointer-events: none;
}

input[type="time"]:focus::before,
input[type="time"]:valid::before{
    display: none;
}

select {
  color: rgb(0, 0, 0); 
  position: relative;
}

select::before {
  content: attr(placeholder);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 10px;
  color: #999;
  pointer-events: none;
}

select:focus::before,
select:valid::before{
    display: none;
}

textarea {
	width: 400px;
	max-width: 400px;
	height: 300px;
	max-height: 300px;
  font-size: 16px;
}

button {
  margin: 5px 5px;
  border: none;
  border-radius: 5px;
  padding: 10px;
  border: var(--button-border-faint);
  background-color: var(--first-color-lighten);
  color:var(--body-color);
  width: 100%;
  max-width: 400px;
  font-size: 1.2rem;
}

button:hover{ 
  cursor: pointer;
  background-color: black;
  color: var(--first-color-lighten);
  transition: 0.5s;
}

.forgot-pass-btn {
  color: red;
  background-color: var(--body-color);
}

.forgot-pass-btn:hover {
  cursor: pointer;
  background-color: var(--body-color);
  text-decoration: underline black;
  text-underline-offset: 3px;
  color: var(--first-color-lighten);
}

.adminNav-btn button{
  font-size: 0.9rem;
  max-width: 200px;
}

.appointment{
  box-sizing: border-box;
  max-width: 450px;
  margin: 10px auto;
  border-radius: 10px;
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.389);
} 

.appointment p{
  text-align: left;
} 

.available-dates {
  padding: 10px;
  margin: 10px auto;
  max-width: 200px;
  border-radius: 10px;
  background-color: var(--first-color-lighten);
  cursor: pointer;
}

.available-dates:hover {
  opacity: .5;
}

.current-appointment{ 
  color: black;
  border-radius: 10px;
  box-shadow: 0px 5px 5px rgba(0, 0, 0, 0.306);
  padding: 20px;
}

.appointment-btn {
  max-width: 100px;
}

.app-prev-next-btn {
  max-width: 50px;
  font-size: 0.9rem;
}

.app-prev-next-btn-active {
  background-color: black;
  color: var(--first-color-lighten);
}

.user {
    box-sizing: border-box;
    padding: 10px;
    max-width: 450px;
    margin: 10px auto;
    border-radius: 10px;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.389);
}

.image-media img,
.video-media video {
    width: 400px; /* Set the desired width */
    height: 350px; /* Set the desired height */
    object-fit: cover; /* Ensures the aspect ratio is maintained and the image is covered */
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.307); /* Optional: Adds a border for better visualization */
    margin: 10px; /* Optional: Adds space between media items */
    opacity: 0.5;
}

.image-media img:hover,
.video-media video:hover {
  opacity: 1;
  transform: scale(1.05);
}

.image-media {
    display: inline-block; /* Allows images to be displayed next to each other */
}

.video-media {
    display: inline-block; /* Allows videos to be displayed next to each other */
}
.delete-media-btn{
  max-width: 100px;
  background-color: white;
  color: red;
}

.pagination__button{
  max-width: 50px;
  font-size: 0.9rem;
}

/* The Modal (background) */
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  padding-top: 150px; /* Location of the box */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* Modal Content */
.modal-content {
  background-color: #fefefe;
  margin: auto;
  padding: 20px;
  border: 1px solid #888;
  width: 80%;
  max-width: 500px;
}

/* The Close Button */
.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

.fullscreen-modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.9);
  justify-content: center;
  align-items: center;
}
.fullscreen-content {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 700px;
}
.fullscreen-close {
  position: absolute;
  top: 20px;
  right: 35px;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  transition: 0.3s;
}
.fullscreen-close:hover,
.fullscreen-close:focus {
  color: #bbb;
  text-decoration: none;
  cursor: pointer;
}

.spinner {
  border: 4px solid rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  border-top-color: #3498db;
  width: 40px;
  height: 40px;
  animation: spin 1s ease-in-out infinite;
  margin: 20px auto;
}

@keyframes spin {
  to {
      transform: rotate(360deg);
  }
}


/*=============== REUSABLE CSS CLASSES ===============*/

/*===============BODY SECTIONS==================*/
.mainSection {
  padding-top: 10vh;
}

:target {
  scroll-margin-top: 20vh;
}

.container {
  max-width: 1120px;
  margin-inline: 1.5rem;
}

.cont-container {
  width: 100%;
  max-width: 1120px;
  text-align: center;
}

.cont-boxshadow {
  box-sizing: border-box;
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.25);
  border-radius: 10px;
}

.text-image-Box {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  padding: 10px;
}

.text-image-Box img {
  width: 400px;
  height: 400px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

.textBox {
  max-width: 400px; 
  padding: 20px;
  text-align: center;
}

.textBox h1{
  text-align: left;
}

.textBox p{
  text-align: left;
}

.serv-area-Box {
  border-radius: 8px;
  background-color: var(--body-color);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); 
  width: 400px; /* Set a fixed width for each box */
  height: 400px;
  padding: 20px;
  text-align: center;
  transition: transform 0.3s ease;
}

.serv-area-Box img {
  width: 100%;
  height: 100px; /* Set a fixed height for the image */
  object-fit: cover; /* Ensure the image covers the entire area without stretching */
  object-position:initial;
  border-radius: 8px 8px 0 0;
}

.serv-area-Box:hover {
  transform: scale(1.05);
}

.video-container {
  width: 600px;
  height: 600px;
  overflow: hidden;
  position: relative;
  background-color: #000; /* Optional: This will add a background color around the video if needed */
}

.video-container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}


.imageBox {
  border-radius: 8px;
  background-color: var(--body-color);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); 
  width: 400px; /* Set a fixed width for each box */
  height: auto;
  padding: 10px;
  text-align: center;
  transition: transform 0.3s ease;
}

.imageBox img {
  width: 100%;
  height: 350px; /* Set a fixed height for the image */
  object-fit: cover; /* Ensure the image covers the entire area without stretching */
  object-position: top;
  border-radius: 8px 8px 0 0;
}

.imageBox:hover {
  transform: scale(1.05);
}

.bg-color-green {
  background-color: var(--first-color);
  color: var(--body-color);
  margin: 0 auto;
  padding: 10px;
}

.bg-color-green h1 {
  color: white;
}

.bg-color-green p {
  color: white;
}

.services p {
  border: 1px solid var(--first-color);
  padding: 10px;
  margin: 5px auto;
  border-radius: 10px;
  width: 200px;
}

.flex {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items:center;
  gap: 5px;
}

.flex-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items:center;
}

.mainContent{
  padding-top: 0px;
  z-index: 1;
  height: auto;
  width: 100%;
  margin: 0 auto; 
}

.backgroundImage {
  height: 100%;
  box-sizing: border-box;
  background-position:bottom;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment:initial;
}

.homeImage {
background-image:
  url("/images/backgroundImages/curved_walkway_2_2.jpg");
}

.imgSection {
  position: relative;
  width: 100%;
  height: 600px; /* Adjust height as needed */
  overflow: hidden;
}

.video-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1;
}

.video-background video {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ensures the video covers the entire background without distortion */
}

.backgroundOverlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); /* Optional: Adds a dark overlay to improve text readability */
  z-index: 1;
}

.logoImage {
  max-width: 400px;
  padding: 10px;
}

.contentFlexContainer{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items:center;
  background-color: transparent;
  border-top: var(--button-border-faint);
  padding: 20px;
}

.contentSubContainer {
  max-width: 1150px;
  text-align: center;
  box-sizing: border-box;
  border-radius: 10px;
  background-color: rgba(0, 0, 0, 0.8);
}

.contentSubContainerFlex {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
  padding: 10px;
  margin-top: 10px;
}

.contentSubContainerFlex:hover {
  box-shadow: 0px 0px 8px var(--text-color);
  transition: 0.5s ease-in-out;
}

@keyframes scaleAnimation {
  from{transform: scale(1); transition: 0.5s ease-in-out;}
  to {transform: scale(1.015); transition: 0.5s ease-in-out;}
}

.contentSubContainerText {
  padding: 5px;
}

.contentSubContainerText h3 {
  color: var(--first-color-lighten);
  text-decoration: underline;
  text-underline-offset: 5px;
}

.contentSubContainerText p {
  text-align: left;
  word-wrap: break-word;
  word-break: keep-all;
  white-space: normal;
}

.imgIconStyle {
  background-color: var(--light-grey-bg-color);
  border-radius: 10px;
  max-width: 300px;
  margin: 0 auto;
  padding: 20px; 
  animation: scaleAnimation infinite 1s ease-in-out alternate-reverse;
}
.imgIconStyle img{
  width: 250px;
  height: auto;
}

.icon-img-adj img{
  width: 250px;
  height: auto;
}

.carousel-container {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.carousel {
  display: flex;
  transition: transform 0.5s ease-in-out;
  margin: 0 auto;
}

.carousel-item {
  min-width: 300px;
  width: 100%;
  flex: 0 0 auto;
  box-sizing: border-box;
  text-align: center;
  padding: 10px;
}

.carousel-item img {
  width: 100%;
  max-width: 100px;
  height: auto;
}

.carousel-item p {
  width: 100%;
  max-width: 400px;
  text-align: center;
  text-wrap: balance;
  margin: 0 auto;
}

.carousel-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
}

.carousel-nav button {
  background-color: var(--first-color-lighten);
  color: white;
  border: none;
  padding: 5px;
  cursor: pointer;
  max-width: 30px;
  opacity: .5;
}

.carousel-nav button:hover {
  opacity: 1;
}

/*=============== END OF REUSABLE CSS CLASSES ===============*/

/*=============== HEADER ===============*/
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  box-shadow: 0 2px 8px hsla(220, 68%, 12%, 0.1);
  background-color: var(--body-color);
  z-index: var(--z-fixed);
  letter-spacing: var(--letter-spacing);
  font-size: .8rem;
}

/*=============== NAV ===============*/
.nav {
  height: var(--header-height);

}
.nav__data {
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  
}
.nav__logo {
  display: inline-flex;
  align-items: center;
  column-gap: 0.25rem;
  color: var(--title-color);
  font-weight: var(--font-semi-bold);
  transition: color 0.3s;
}
.span__logo{
  padding-top: 0px;
  color: var(--title-color);
}

.nav__logo img {
    width: 80px;
    height: auto;
}
.nav__logo i {
  font-size: 1.25rem;
}
.nav__logo:hover{
  opacity: .5;
  transform: scale(0.9);
  transition: 0.5s;
}
.nav__toggle {
  position: relative;
  width: 32px;
  height: 32px;
}
.nav__toggle-menu, .nav__toggle-close {
  font-size: 1.25rem;
  color: var(--title-color);
  position: absolute;
  display: grid;
  place-items: center;
  inset: 0;
  cursor: pointer;
  transition: opacity 0.1s, transform 0.4s;
}
.nav__toggle-close {
  opacity: 0;
}

@media screen and (max-width: 1118px) {
  .nav__menu {
    background-color: var(--body-color);
    position: absolute;
    left: 0;
    top: 2.5rem;
    width: 100%;
    height: calc(100vh - 3.5rem);
    overflow: auto;
    padding-block: 1.5rem 4rem;
    pointer-events: none;
    opacity: 0;
    transition: top 0.4s, opacity 0.3s;
  }
  .nav__menu::-webkit-scrollbar {
    width: 0.5rem;
  }
  .nav__menu::-webkit-scrollbar-thumb {
    background-color: hsl(220, 12%, 70%);
  }
}
.nav__link {
  color: var(--title-color);
  font-weight: var(--font-semi-bold);
  padding: 1.25rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s;
}
.nav__link:hover {
  background-color: var(--body-color);
}

/* Show menu */
.show-menu {
  opacity: 1;
  top: 6rem;
  pointer-events: initial;
}

/* Show icon */
.show-icon .nav__toggle-menu {
  opacity: 0;
  transform: rotate(90deg);
}

.show-icon .nav__toggle-close {
  opacity: 1;
  transform: rotate(90deg);
}

/*=============== DROPDOWN ===============*/
.dropdown__button {
  cursor: pointer;
}

.dropdown__img {
  width: 30px;
  height: auto;
}
.dropdown__arrow {
  font-size: 1.5rem;
  font-weight: initial;
  transition: transform 0.4s;
}
.dropdown__content, .dropdown__group, .dropdown__list {
  display: grid;
}
.dropdown__container {
  background-color: var(--body-color);
  height: 0;
  overflow: hidden;
  transition: height 0.4s;
}
.dropdown__content {
  row-gap: 1.75rem;
}
.dropdown__group {
  padding-left: 2.5rem;
  row-gap: 0.5rem;
}
.dropdown__group:first-child {
  margin-top: 1.25rem;
}
.dropdown__group:last-child {
  margin-bottom: 1.25rem;
}
.dropdown__icon i {
  font-size: 1.25rem;
  color: var(--first-color);
}
.dropdown__title {
  font-size: var(--normal-font-size);
  font-weight: var(--font-semi-bold);
  color: var(--title-color);
}
.dropdown__list {
  row-gap: 0.25rem;
}
.dropdown__link {
  font-size: var(--small-font-size);
  font-weight: var(--font-medium);
  color: var(--text-color);
  transition: color 0.3s;
}
.dropdown__link:hover {
  color: var(--first-color-lighten);
}

/* Rotate dropdown icon */
.show-dropdown .dropdown__arrow {
  transform: rotate(180deg);
}

/*==========FOOTER SECTIONS==========*/
.footer {
  background-color: transparent;
  box-shadow: var(--box-shadow-blk-section);
  padding: 10px 0px;
  z-index: 1;
  margin-top: 10px;
}

.footer-container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin-left: 10px;
  margin-right: 10px;
}

@media only screen and (max-width: 700px) {
  .footer-container {
    flex-direction: column;
  }
}

.footer-section {
  width: 100%;
  height: auto;
  margin: 10px 10px;
  border-radius: 10px;
  text-align: left;

}
.footer-content-box {
  display: flex;
  flex-direction: column;
}

.footer-info {
  width: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;

}

.contactIcons {
  position: relative;
  filter:invert(1);
  top: 10px;
  right: 5px;
  transition: 0.5s ease-in-out;
}

.contactIcons:hover{
  transform: rotate(-20deg);
}

.footer-section h3, .footer-section h3 {
  font-size: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  max-width: 400px;
  margin: 10px auto;
  border-radius: 20px;
  text-align: center;
  padding: 10px 0px;
}

.footer-section h3:hover, .footer-section h3:hover {
  transform: scale(1.05);
  cursor:initial;
}

.footer-info p {
  text-decoration: none;
  color: var(--text-color);
  border: var(--button-border-faint);
  border-radius: 5px;
  margin-top: 5px;
  padding: 5px;
}

.footer-info a, .footer-info li{
  color: var(--text-color);
  border: var(--button-border-faint);
  border-radius: 5px;
  margin-top: 5px;
  list-style-type: none;
  text-decoration: none;
  color: var(--text-color);
  padding: 5px;
}

.footer-info a:hover {
  text-decoration: underline #ffffff;
  text-underline-offset: 5px;
}

.footer-socials-box {
  display: flex;
  flex-direction: column; 
  justify-content: center;
  align-items: center;
}

.footer-socials-box img {
  top: 0px;
  position: relative;
  width: 30px;
}

.footer-socials-box span {
  bottom: 7px;
  padding-left: 10px;
  position: relative;
}

.footer-socials-in-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0px;
  width: 100%;
  margin: 0 auto;
}

.socials-links-ct {
  border-radius: 10px;
  width: 100%;
  padding: 10px;
  text-align: center;
}

.socials-links-ct button{
  width: 100%;
  max-width: 300px;
  text-align: left;
  background-color: var(--light-grey-bg-color);
  color: var(--body-color);
  border: 1px solid rgba(255, 255, 255, 0.08);  
}

.socials-links-ct button:hover{
  color: var(--text-color);
  background-color: rgba(255, 255, 255, 0.427);
}

.copyrightSect {
  background-color: transparent;
  
  margin: 0 auto;
}

.copyrightContainer{
  padding: 20px;
  margin-left: 10px;
  margin-right: 10px;
  margin-bottom: 50px;
  border-radius: 10px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  font-size: 14px;
  letter-spacing: 2px;
  color: var(--title-color);
}

.copyrightContainer img{
  width: 100px;
  padding: 10px;
}
  
/*=============== BREAKPOINTS ===============*/
/* For small devices */
@media screen and (max-width: 300px) {
  .dropdown__group {
    padding-left: 1.5rem;
  }
}
/* For large devices */
@media screen and (min-width: 1118px) {
  /* Nav */
  .nav {
    height: calc(var(--header-height) + 2rem);
    display: flex;
    justify-content: space-between;
  }
  .nav__toggle {
    display: none;
  }
  .nav__list {
    display: flex;
    column-gap: 3rem;
    height: 100%;
  }
  .nav li {
    display: flex;
  }
  .nav__link {
    padding: 0;
  }
  .nav__link:hover {
    color: var(--first-color-lighten);
    text-decoration: underline var(--title-color);
    background-color: transparent;
    text-underline-offset: 8px;
  }
  /* Dropdown */
  .dropdown__button {
    column-gap: 0.25rem;
    pointer-events: none;
  }
  .dropdown__container {
    height: max-content;
    position: absolute;
    left: 0;
    right: 0;
    top: 6.5rem;
    background-color: var(--body-color);
    box-shadow: 0 6px 8px hsla(0, 0%, 0%, 0.05);
    pointer-events: none;
    opacity: 0;
    transition: top 0.4s, opacity 0.3s;
  }
  .dropdown__content {
    grid-template-columns: repeat(4, max-content);
    column-gap: 6rem;
    max-width: 1120px;
    margin-inline: auto;
  }
  .dropdown__group {
    padding: 4rem 0;
    align-content: baseline;
    row-gap: 1.25rem;
  }
  .dropdown__group:first-child, .dropdown__group:last-child {
    margin: 0;
  }
  .dropdown__list {
    row-gap: 0.75rem;
  }
  .dropdown__icon {
    width: 60px;
    height: 60px;
    background-color: var(--first-color-lighten);
    border-radius: 50%;
    display: grid;
    place-items: center;
    margin-bottom: 1rem;
  }
  .dropdown__icon i {
    font-size: 2rem;
  }
  .dropdown__title {
    font-size: var(--normal-font-size);
  }
  .dropdown__link {
    font-size: var(--small-font-size);
  }
  .dropdown__link:hover {
    color: var(--first-color-lighten);
  }
  .dropdown__item {
    cursor: pointer;
  }
  .dropdown__item:hover > .nav__link{
    color: var(--first-color-lighten);
  }
  .dropdown__item:hover .dropdown__arrow {
    transform: rotate(180deg);
    color: var(--title-color);
  }
  .dropdown__item:hover > .dropdown__container {
    top: 6.5rem;
    opacity: 1;
    pointer-events: initial;
    cursor: initial;
  }
  /*BODY SECTIONS*/

  .mainSection {
    padding-top: 8vh;
  }

  .mainContent{
    padding-top: 50px;
  }

  .contentFlexContainer {
    flex-direction: row;
  }
  .backgroundImage {
    height: 80vh;
    background-attachment: fixed;
    background-size: cover;
  }
  .falling__Cherry__Container {
    background: radial-gradient(#000000, #000);
  }
  .plansContainer {
    flex-direction: row;
  }
  .contentSubContainer h1{
    font-size: 3rem;
  }
  .contentSubContainer h3{
    font-size: 2rem;
  }
  .contentSubContainer p{
    font-size: 1.5rem;
  }
  .contentSubContainerFlex {
    flex-direction: row;
  }
  .imgIconStyle{
    max-width: 400px;
    height: auto;
  }
  .imgIconStyle img {
    width: 350px;
    height: auto;
  }
  .imageBox {
    height: auto;
    width: 350px;
  }
}
@media screen and (min-width: 1152px) {
  .container {
    margin-inline: auto;
  }
  .cont-container {
    margin-inline: auto;
  }
  .transparent_bg{
    top: 150px;
    max-width: 100%;
    height: 400px;
  }
  .transparent_bg h1{
    font-size: 2.5rem;
  }

}