* {
  margin: 0;
  border: 0;
  text-decoration: none;
  box-sizing: border-box;
}
body {
  margin: 0;
  padding: 0;
  background-color: #edd3d3;
}
.logo {
  height: 100px;
  width: 100px;
}
#header {
  background-color: #000000;
  height: 120px;
  position: relative;
}
#header img {
  height: 100%;
  width: 7rem;
  margin-top: 10px;
  margin-left: 10px;
  float: left;
}
#header h3 {
  float: inline-start;
  color: rgb(255, 255, 255);
  font-size: 2rem;
  margin-top: 40px;
  margin-left: 20px;
}
.navbar ul {
  list-style-type: none;
  padding: 0px;
  margin: 0px;
  overflow: hidden;
  margin-right: 40px;
}
.navbar a {
  margin-top: 2rem;
  color: rgb(255, 255, 255);
  text-decoration: none;
  display: block;
  padding: 25px;
  text-align: center;
  font-size: 25px;
}
.navbar a:hover {
  color: rgb(122, 122, 133);
}
.navbar li {
  float: right;
}

.hamburger {
  display: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  position: absolute;
  right: 7%;
  top: 50%;
}

.hamburger .bar {
  width: 30px;
  height: 5px;
  background-color: antiquewhite;
}

.menubar {
  display: none;
  background-color: antiquewhite;
  width: 130px;
  border-radius: 15px;
  position: absolute;
  right: 15px;
  top: 75%;
}
.menubar ul {
  list-style-type: none;
  padding: 0 20px;
}
.menubar ul li {
  margin: 10px 0;
}
.menubar li a {
  color: #000;
  text-decoration: none;
}

@media (max-width: 768px) {
  #header > div {
    margin-left: 20px;
  }
  #header h3 {
    margin: 0;
    font-size: 25px;
    width: 50%;
    margin-top: 10%;
    margin-left: 10px;
  }
  .navbar {
    display: none;
  }

  .hamburger {
    display: flex;
  }
  .menubar ul{
    z-index: 999;
    background-color: rgb(204, 177, 141);
  }
  .menubar {
    display: none;
    flex-direction: column;
  }
  .menubar.active {
    display: flex;
  }
}
#sect1{
  margin-top: 2rem;
  margin-bottom: 5rem;
}
.container{
  overflow: hidden;
}
.imgcontainer {
  width: 100%;
  height: 40rem;
  display: flex;
  perspective: 10rem;
  animation: slide 20s linear infinite;
  animation-play-state: running; /* default state */
}

.imgcontainer:hover {
  animation-play-state: paused; /* pause animation without resetting */
}

.imgcontainer img {
  padding: 25px;
  width: 100%;
  height: 100%;
}

#sect1 .slides:hover {
  transform: scale(1.5);
}

@keyframes slide {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
#sect11{
  width: 100%;
  height: auto;
}
#sect11 .container{
  width: 100%;
  position: relative;
  display: flex;
  justify-content: center;
  flex-direction: wrap;
  flex-wrap: wrap;
  gap: 5rem;
  align-items: center;
  padding: 5rem 0;
}
#sect11 img{
  position: absolute;
  left: -15px;
  top: -10px;
  height: 35rem;
  mix-blend-mode: multiply;
}
#sect11 .sect11box{
  background: linear-gradient(to bottom, #ffffff 0%, #ff99cc 100%);
  height: 25rem;
  width: 20rem; 
  border-radius: 20px;
  margin: 2rem 0;
}
#sect11 h2{
  text-align: center;
  padding-top: 2rem;
  font-size: 35px;
}
#sect11 p{
  text-align: center;
  padding-top: 3rem;
  padding-left: 1rem;
  padding-right: 1rem;
  font-size: 25px;
  letter-spacing: 2px;
} 
@media (max-width: 768px) {
 #sect11 img{
  left: -5rem;
  height: 30rem;
 }
}
#sect2 h3 {
  border-radius: 20px;
  color: black;
  margin-bottom: 3rem;
  font-family: "Tangerine", cursive;
  font-weight: 600;
  font-style: normal;
  font-size: 100px;
  text-align: center;
}
#sect2 h2{
  font-size: 40px;
  font-family: Arial, Helvetica, sans-serif;
  color: rgb(0, 0, 0);
  font-weight: 300;
  text-align: center;
  margin: 1rem;
  padding: 1rem;
}
#sect2 .products{
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  gap: 1em;
  width: 100%;
  height: 500px;
  transition: all 900ms;
}
.products div{
  font-size: 20px;
  color: rgb(255, 255, 255);
  text-shadow: 1px 1px black;
  font-style: bold;
  font-weight: 500;
}
.products > div{
  position: relative;
  background: var(--img) center center;
  background-size: cover;
  transition: all 400ms;
  display: flex;
  justify-content: center;
  align-items: center;
}
.products > div::after{
  content: attr(data-text);
  position: absolute;
  bottom: 20px;
  background: black;
  color: #ffffff;
  padding: 10px 10px 10px 14px;
  letter-spacing: 4px;
  text-transform: uppercase;
  transform: translateY(60px);
  opacity: 0;
  transition: all 900ms;
}
.products:hover .boxes{
  filter: grayscale(100%) opacity(24%);
  cursor: pointer;
}
.boxes:hover::after{
  transform: translateY(0);
  opacity: 1;
  transition-delay: 800ms;
}
.products .boxes:hover{
  filter: grayscale(0%) opacity(100%);
}
.products:has(#product1:hover){
  grid-template-columns: 5fr 1fr 1fr 1fr 1fr 1fr;
}
.products:has(#product2:hover){
  grid-template-columns: 1fr 5fr 1fr 1fr 1fr 1fr;
}
.products:has(#product3:hover){
  grid-template-columns: 1fr 1fr 5fr 1fr 1fr 1fr;
}
.products:has(#product4:hover){
  grid-template-columns: 1fr 1fr 1fr 5fr 1fr 1fr;
}
.products:has(#product5:hover){
  grid-template-columns: 1fr 1fr 1fr 1fr 5fr 1fr;
}
.products:has(#product6:hover){
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 5fr;
}
@media (max-width: 768px){
  #sect2 .products{
    grid-template-columns: 1fr 1fr 1fr;
    padding: 0 1rem;
  }
  .products:has(#product1:hover){
    grid-template-columns: 2fr 1fr 1fr;
  }
  .products:has(#product2:hover){
    grid-template-columns: 1fr 2fr 1fr;
  }
  .products:has(#product3:hover){
    grid-template-columns: 1fr 1fr 2fr;
  }
  .products:has(#product4:hover){
    grid-template-columns: 2fr 1fr 1fr;
  }
  .products:has(#product5:hover){
    grid-template-columns: 1fr 2fr 1fr;;
  }
  .products:has(#product6:hover){
    grid-template-columns: 1fr 1fr 2fr;
  }
  .products > div::after{
    font-size: 10px;
  }
  #sect2 h3{
  font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
  font-weight: 600;
  font-style: normal;
  font-size: 90px;
  text-align: center;
  }
}
#sect3 {
  height: 100%;
  width: 100%;
  position: relative;
  margin-top: 5rem;
  margin-bottom: 1rem;
  padding-bottom: 5rem;

}
#sect3 .packagescontainer {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 50px;
  width: 100%;
  margin-top: 20px;
}
#sect3 #package1{
  background-image: url(images/bgpackages.jpg);
  background-position: center;
  background-size: cover;
}
#sect3 #package2{
  background-image: url(images/bgpackages1.jpg);
  background-position: center;
  background-size: cover;
}
#sect3 #package3{
  background-image: url(images/bgpackages2.jpg);
  background-position: center;
  background-size: cover;;
}
#sect3head {
  border-radius: 20px;
  color: black;
  font-family: "Tangerine", cursive;
  font-weight: 600;
  font-style: normal;
  font-size: 100px;
  text-align: center;
}
.packages {
  margin-top: 3rem;
  height: 35rem;
  width: 20rem;
  border-radius: 20px;
}
.packages hr {
  height: 2px;
  width: 100%;
  background-color: black;
}
.packages h3 {
  text-align: center;
  font-size: 60px;
  font-family: "Tangerine", cursive;
  font-weight: 600;
  font-style: normal;
  color: black;
}
.packages h2 {
  text-align: center;
  font-size: 40px;
  color: black;
}
.packages li {
  font-size: 25px;
  font-weight: 400;
  font-style: bold;
  word-spacing: 3px;
  margin: 10px 0;
  color: black;
  padding-top: 20px;
}
#sect3 .btn:hover {
  background-color: rgb(160, 154, 119);
  border-radius: 20px;
}
@media (max-width: 768px) {
  #sect3 h3 {
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    font-weight: 600;
    font-style: normal;
    padding-top: 0;
  }
  #sect3head{
      font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
      font-weight: 600;
      font-style: normal;
      font-size: 90px;
      text-align: center;
  }
  #sect3 #img2 {
    display: none;
  }
  #sect3 #img3 {
    display: none;
  }
  #sect3 ul{
    width: 100%;
    padding-left: 30px;
  }
}
#sect4 {
  width: 100%;
  height: 100%;
  padding: 0 40px;
  overflow: hidden;
  margin-bottom: 3rem;
}
#sect4 #sect4img1{
  mix-blend-mode: multiply;
}
#sect4 h3 {
  border-radius: 20px;
  color: black;
  text-align: center;
  font-size: 100px;
  font-family: "Tangerine", cursive;
  font-weight: 600;
  font-style: normal;
}
#potentialincome1 {
  display: flex;
  flex-direction: row;
  align-items: center;
}
#potentialincome1 p {
  text-align: center;
  color: black;
  font-size: 35px;
  padding: 5px 5px;
}
.box {
  color: black;
  height: auto;
  width: 100%;
  float: left;
}
#box1 {
  width: 70%;
}
#box1 li {
  margin: 20px 50px;
  font-size: 30px;
}
#box1 p {
  margin: 10px 20px;
  font-size: 30px;
}
#box2 {
  width: 30%;
}
#box2 button {
  font-size: 30px;
  margin-top: 15rem;
  margin-left: 5rem;
  margin-bottom: 5rem;
  background-color: #9792b5;
  border-radius: 20px;
  cursor: pointer;
  padding: 15px 20px;
}
#box2 button:hover {
  background-color: #585664;
}

@media (max-width: 768px) {
  #sect4 {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    margin-bottom: 5rem;
  }
  #sect4 h3 {
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    font-weight: 600;
    font-style: normal;
    font-size: 70px;
  }
  #potentialincome1 {
    width: 100%;
    flex-direction: column-reverse;
    margin-bottom: 1rem;
  }
  #potentialincome1 img {
    width: 100%;
  }
  #potentialincome1 p {
    font-size: 20px;
    margin-bottom: 1rem;
  }
  #box1 {
    width: 100%;
    margin: 10px 0;
  }
  #sect4 p {
    text-indent: 15px;
  }
  #box1 p,
  ul {
    font-size: 20px;
    width: 100%;
    margin: 0;
    padding: 0;
  }
  #box1 p{
    margin-bottom: 1rem;
  }
  #box1 ul li {
    padding: 0;
    font-size: 20px;
  }
  #box2 {
    width: 100%;
    position: relative;
  }
  #box2 img {
    z-index: -1;
    width: 100%;
    opacity: 0.3;
    position: absolute;
    bottom: 10px;
  }
  #box2 button {
    margin: 0;
    font-size: 18px;
    margin-left: 20%;
  }
}

/* footer */
footer {
  border-top: 2px solid black;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  flex-wrap: wrap;
  width: 100%;
  overflow: hidden;
}
footer h2{
  font-size: 50px;
}
#dets1 {
  display: flex;
  justify-content: center;
  align-items: center;
}
#dets1 img {
  mix-blend-mode: multiply;
  height: 5%;
  width: 10%;
  margin-top: 20px;
  margin-left: 20px;
}
#dets1 h2 {
  color: rgb(0, 0, 0);
  padding-left: 13px;
  padding-top: 5px;
}
#dets2 {
  display: flex;
  flex-direction: row;
  padding: 2% 5%;
}
#dets2 p {
  padding-left: 0.2rem;
  font-size: 18px;
  margin: 5px 0;
  color: rgb(0, 0, 0);
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  display: flex;
  align-items: center;
}
#fblink {
  display: flex;
  color: rgb(0, 0, 0);
  align-items: center;
  text-decoration: none;
}
#fblink:hover {
  color: #c7be80;
}
#dets2 img {
  width: 40px;
  height: 40px;
  margin-right: 10px;
}
footer p{
  mix-blend-mode: multiply;
}
@media (max-width: 768px) {
  footer{
    height: 80vh;
    margin: 0;
    padding-bottom: 100%;
  }
  footer #dets1{
    flex-direction: row;
  }
  #dets1 img{
    height:7rem;
    width: 10rem;
  }
  footer #dets2{
    flex-direction: column;
    margin: 1rem 0;
    padding: 0;
  }
  #dets2 p{
    font-size: 15px;
  }
  footer #img{
    height: 50px;
  }
  footer h2{
    font-size: 30px;
  }
}