:root {
  --borderRadius: 0.2rem;
  --color1:#fefdf8;
  --color2:#9f9981;
  --color3:#242219;
  --color4:#797253;
  --color5:#444F77;
  --color6:#776c44;
  --color7:#4599BA;
  --color8:#5EA166;
  --color9:#d5822a;
  --color10: #C13584;
  --bg0: #faf9f2;
  --bg3: #dfe0c3;
  --transparent: #ffffff00;
}

*{
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  border-radius: var(--borderRadius);
  outline: none;
  list-style: none;
  word-wrap: break-word;
  -webkit-box-sizing: border-box;
  -webkit-tap-highlight-color: rgba(255, 255, 255, 0) !important; 
  -webkit-focus-ring-color: rgba(255, 255, 255, 0) !important; 
}

.lato-thin {
  font-family: "Lato", serif;
  font-weight: 100;
  font-style: normal;
}

.lato-light {
  font-family: "Lato", serif;
  font-weight: 300;
  font-style: normal;
}

.lato-regular {
  font-family: "Lato", serif;
  font-weight: 400;
  font-style: normal;
}

.lato-bold {
  font-family: "Lato", serif;
  font-weight: 700;
  font-style: normal;
}

.lato-black {
  font-family: "Lato", serif;
  font-weight: 00;
  font-style: normal;
  font-size: 2em;
}

.lato-thin-italic {
  font-family: "Lato", serif;
  font-weight: 100;
  font-style: italic;
}

.lato-light-italic {
  font-family: "Lato", serif;
  font-weight: 300;
  font-style: italic;
}

.lato-regular-italic {
  font-family: "Lato", serif;
  font-weight: 400;
  font-style: italic;
}

.lato-bold-italic {
  font-family: "Lato", serif;
  font-weight: 700;
  font-style: italic;
}

.lato-black-italic {
  font-family: "Lato", serif;
  font-weight: 900;
  font-style: italic;
}

.brand a{
  text-decoration: none;
  color: var(--color3);
}

.caption{
  color: var(--color2);
}

html{
  scroll-behavior: smooth;
}

body {
  background: var(--color1);
  overflow-x: hidden !important;
}

.container {
  /* border: 1px solid hsl(113, 41%, 52%); */
  width: 95%; /* whenever screen size is smaller than max-width, instead take up 95% of screen */
  margin: 0px auto; /* to keep the keep container in the center */
  padding: 1.2rem 6%;
  display: flex;
  justify-content: space-between;
  /* flex-wrap: wrap;
  align-items: center; */
  max-width: 1700px;
}


.content{
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  /* flex-wrap: wrap; */
  align-items: center;
  margin: 75px auto;
  width: 85%;
  gap: 20px;
}

.text-content{
  width: 100%;
  height: auto;
  padding: 5px 0;
  bottom: 0;
  left: 0;
  position: absolute;
  background: var(--color1);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  opacity: 0;
  transition: all 0.3s ease;
}

/* Navbar */

.navbar {
  background: var(--color1);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1100;
  transition: all 500ms ease;
}

/* .navbar .logo-wrapper {
  height: 29px;
  overflow: hidden;
} */

.navbar .navbar-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.navbar .navbar-links a {
  line-height: 28px;
  color: var(--color3);
  text-decoration: none;
}

.navbar .navbar-links a:hover {
  color: var(--color2);
}

.navbar .toggle_btn {
  padding: 2em; /* to increase size of pressible area */
  margin: -2em; /* to increase size of pressible area */
  cursor: pointer;
  display: none;
  color: var(--color4);
  max-height: 20px;
}


/* Navbar active tab */
li a:is(:link, :active, :visited) {
  color: var(--color3);
}

a:is(:link, :active, :visited).active{
  color: var(--color2);
}


/* DROPDOWN MENU */
.dropdown_menu{
  display: none;
  position: fixed;
  right: 2rem;

  z-index: 1100;
  height: 0;
  top: 106px;

  width: 100%;
  background: var(--color1);
  backdrop-filter: blur(15px);
  /* border-radius: var(--borderRadius); */
  overflow: hidden;
  transition: height 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.dropdown_menu.open{
  height: 180px;

}

.dropdown_menu li{
  padding: 0.7rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dropdown_menu li a{
  color: var(--color3);
  text-decoration: none;
}

.dropdown_menu li a:hover {
  color: var(--color2);
}


/* rate */

.packages{

  display: flex;
  flex-direction: column;
  gap: 20px;

}

.rate-content{

  display: flex;
  justify-content:flex-start;
  /* flex-wrap: wrap; */
  align-items:flex-start;
  margin: 75px auto;
  gap: 20px;

}

.offer{
  width: 50%;
}

.packages .box{
  border: 2px solid var(--color2);
  border-radius: var(--borderRadius);
  padding: 10px;
  max-width: 350px;
}

.services .box .item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
  padding: 1rem 1.5rem;
  /* background-color: var(--bg1); */
}

.packages .box .item a {
  display: flex;
  flex-direction: column;
  /* align-items: center; */
  /* text-align: center; */
  text-decoration: none;
  gap: 0.5rem;
  cursor: default;
}


.packages .box .item h3 {
  font-size: 25px;
  line-height: 22px;
  color: var(--color3);
}

.packages .box .item h6 {
font-size: 20px;
line-height: 22px;
color: var(--color4);
}

.packages .box .item p {
font-size: 14px;
line-height: 20px;
color: var(--color3);
}
/* rate end */



/* Contact Page Start */
.container .about-container{
  display: flex;
  gap: 20px;
}

.container .about-container .img{
  width: 80%;
}

.container .about-container .img img{
  width: 100%;
  clip-path: circle();
}

.about-me{
  color: var(--color3);
  font-size: 16px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.socials a{
  text-decoration: none;
  margin: 0;
  padding: 0;
  font-size: 25px;
  color: var(--color3);
}

.contact {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact ul {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact ul li {
  font-size: 18px;
  color: #333;
}
.contact ul span {
  font-size: 16px;
  color: #333;
  padding: 0px 4px;
}
.contact .form-title {
  font-size: 18px;
  color: #000;
}

.contact .box {
  /* border: 1px solid hsl(27, 100%, 47%); */
  /* margin: 20px 5px 20px 0px; */
  margin: 20px auto 20px auto;
}

.contact .box-r {
  position: relative;
}

.contact .box-r .form-box {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: black;
  height: 100%;
  width: 100%;
  padding: 2rem 1rem;
  border-radius: var(--borderRadius);
}

.contact .form-box h2 {
  font-size: 22px;
  color: var(--color1);
}

.contact form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact .one-line {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.contact .box-input {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 0rem;
  border-bottom: 1px solid var(--color1);
  border-radius: 1px;
}

.contact .box-input label {
  position: absolute;
  top: 0;
  left: 0;
  padding: 0.66rem;
}

.contact .box-input i {
  color: var(--color1);
}

.contact .box-input textarea,
.contact .box-input input {
  width: 100%;
  font-size: 14px;
  border: none;
  background-color: transparent;
  color: var(--color1);
}

.contact .box-input textarea {
  padding-left: 1rem;
  margin-top: 0.351rem;
}

.contact .box-input textarea::placeholder,
.contact .box-input input::placeholder {
  color: var(--color1);
  font-size: 12px;
  text-transform: capitalize;
}

.btn-send {
  background-color: var(--color1);
  color: var(--color6);
  padding: 0.75rem 1rem;
  border: none;
  border-radius: var(--borderRadius);
  cursor: pointer;
}



/* Contact Page End */


/* Photo Gallery Start */

/* @keyframes appear{
  from {
    transform: scale(0.4);
  }
  to {
    transform: scale(1);
  }
} */

.hidden{
  opacity: 0;
  filter: blur(5px);
  transform: translateY(10%);
  scale: 0.9;
  transition: all 0.2s;
}

.show{
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
  scale: 1;
}

.container .image-container{
  /* display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  grid-auto-rows: 200px;
  grid-auto-flow: dense;
  grid-gap: 10px; */



  columns:4 400px;
  gap: 15px;
  margin-top: 40px;
}

.container .image-container .image{
  /* animation: appear 5s linear;
  animation-timeline: view();
  animation-range: entry 0% cover 25%; */
  position: relative;
  overflow: hidden;
}

.container .image-container img{
  margin-top: 40px;
  /* margin-bottom: 0px;
  padding-bottom: 0p; */
  width: 100%;
  display: block;
  /* position: relative;
display: inline-block; */
}

.grayscale{
  filter: grayscale(100%);
  transition: filter 0.7s ease;
}

.image:hover  {
  opacity: 0.8;
  cursor: pointer;
  filter: grayscale(0);
}

.image:hover .text-content {
  opacity: 0.9;
}

/* img:hover {
  cursor: pointer;
} */

#lightboxBg {
  position: fixed;
  z-index: 2000;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(150, 150, 150, 0.6);
  backdrop-filter: blur(2px);
  display: none;
}

#lightboxBg.active{
  display: grid;
  align-content: center;
  place-items: center;
}

#lightboxImg{
  max-width: 85vw;
  max-height: 90vh;
  box-shadow: 1px 3px 20px rgba(0, 0, 0, 0.5);
}

/* Photo Gallery End */


/* Sticky CTA Start */
.floating-container {
  position: fixed;
  width: 100px;
  height: 100px;
  bottom: 0;
  right: 0;
  margin: 35px 10px;
}

/* .hithere {
  animation: hithere 1s ease infinite;
} */
@-webkit-keyframes hithere {
  30% { transform: scale(1.2); }
  40%, 60% { transform: rotate(-20deg) scale(1.2); }
  50% { transform: rotate(20deg) scale(1.2); }
  70% { transform: rotate(0deg) scale(1.2); }
  100% { transform: scale(1); }
}

.floating-container:hover{
  height: 340px;
  padding-left: 6px;
}

.floating-container:hover .floating-button{
  box-shadow: 0 10px 25px var(--color5);
  transform: translateY(5px);
  transition: all 0.3s;
  animation: hithere paused ;
}

.floating-button{
  position: absolute;
  width: 65px;
  height: 65px;
  background-color: var(--color5);
  bottom: 0;
  border-radius: 50%;
  left: 0;
  right: 0;
  color: var(--color1);
  line-height: 65px; /* to center the + sign with the height of the button */
  text-align: center; /* to center the + sign horizontally */
  font-size: 23px;
  font-weight: bolder;
  z-index: 100;
  box-shadow: 0 10px 25px -5px var(--color5);
  cursor: pointer;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  animation: hithere 1s ease 5s 1; 
}

.float-element{
  position: relative;
  /* display: block; */
  border-radius: 50%;
  width: 50px;
  height: 50px;
  margin: 15px 0;
  color: wheat;
  display: grid;
  place-items: center;
  z-index: 0;
  opacity: 0;
  cursor: pointer;
  font-size: 25px;
}

.float-element a{
  text-decoration: none;
  color: wheat;
}


.float-element:nth-child(1){
  background-color: var(--color7);
  box-shadow: 0 20px 20px -10px var(--color7);
}

.float-element:nth-child(2){
  background-color: var(--color9);
  box-shadow: 0 20px 20px -10px var(--color9);
}

.float-element:nth-child(3){
  background-color: var(--color8);
  box-shadow: 0 20px 20px -10px var(--color8);
}

.float-element:nth-child(4){
  background-color: var(--color10);
  box-shadow: 0 20px 20px -10px var(--color10);
}

@-webkit-keyframes come-in {
  0% {
      opacity: 0;
  }

  30% {
      transform: translateX(-50px) scale(0.4);
  }

  70%{
      transform: translateX(0px) scale(1.2);
  }

  100%{
      transform: scale(1);
      opacity: 1;
  }
}

.floating-container:hover .element-container .float-element:nth-child(1) {
  animation: come-in 0.3s forwards 0.2s;
}

.floating-container:hover .element-container .float-element:nth-child(2) {
  animation: come-in 0.3s forwards 0.4s;
}

.floating-container:hover .element-container .float-element:nth-child(3) {
  animation: come-in 0.3s forwards 0.6s;
}

.floating-container:hover .element-container .float-element:nth-child(4) {
  animation: come-in 0.3s forwards 0.8s;
}
/* Sticky CTA End */



/* RESPONSIVE DESIGN */
@media (prefers-reduced-motion: reduce) {
  .hidden{
    transition: none;
  }
}

@media (max-width:1281px) { /* hi-res laptops and desktops */ }
@media (max-width:1025px) { /* big landscape tablets, laptops, and desktops */ 
  .container .about-container{
      flex-direction: column;
      }
  
  .container{
      flex-direction: column;
  }
}
@media (max-width:961px)  { /* tablet, landscape iPad, lo-res laptops ands desktops */ 
  .rate-content{
      flex-direction: column;
  }
  .offer{
      width: 100%;
  }

}
@media (max-width:641px)  { /* portrait tablets, portrait iPad, landscape e-readers, landscape 800x480 or 854x480 phones */ 
  .container{
      flex-direction: row;
  }

  .navbar .navbar-links {
  display: none;
  }

  .navbar .toggle_btn {
      display: block;
  }

  .dropdown_menu {
  display: block;
  left: 2rem;
  width: unset;
  }


}
@media (max-width:481px)  { /* portrait e-readers (Nook/Kindle), smaller tablets @ 600 or @ 640 wide. */ }
@media (max-width:320px)  { /* smartphones, iPhone, portrait 480x320 phones */ 
  .dropdown_menu {
      left: 2rem;
      width: unset;
    }
}