body{
   background-color: #d5edf4;
   color: black;
   font-size: 20px;
   font-family: Tahoma, sans-serif;
   height: 100%;
   margin: 4px;
   padding: 6px;
  }
h1{
  font-size: 50px;
}
h2{
  font-size: 36px;
}
h3{
  font-size: 30px;
}
h4{
  font-size: 26px;
}
a{
  color: #f29f03;
}
main{
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  }
section{
  width: 100%;
  padding: 10px 0;
  position: relative;
  z-index: 2;
}
.content{
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.spacedText{
  line-height: 2em;
}
.welcomeHome{
  font-family: Brush Script MT, cursive;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.button {
   padding: 10px 40px 10px 40px;
   font-size: 20px;
   border: 1px solid #d95b94;
   border-radius: 10px;
   background-color: #d95b94;
   color: black
  }
.header{
  width: 100%;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 15px;
  background-color:#d5edf4;
  z-index: 100;
  }
.header div{
  color: black;
  font-size: 24px;
  }
.logoimg{
  width: 250px;
}
footer{
  margin-top: 10px;
  padding:40px;
  border: 2px solid #d95b94;
  border-radius: 40px;
  background-color:#d5edf4;
  color: black;
  position: relative;
  z-index: 2;
  }
.footercontent{
  max-width: 1600px;
  width: 100%;
  margin: 0 auto; 
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hambox{
  width: 50px;
  height: 40px;
  background-color: #d5edf4;
  border-radius: 5px;
  position: fixed;
  top: 38px;
  right: 38px;
  z-index: 100;
}
#menuToggle{
  display: block;
  margin: 9px;
  -webkit-user-select: none;
  user-select: none;
}
#menuToggle a{
  text-decoration: none;
  color: black;
  transition: color 0.3s ease;
}
#menuToggle li:hover{
  color: #F2B705;
}
#menuToggle input{
  display: block;
  width: 40px;
  height: 32px;
  position: absolute;
  top: -7px;
  right: -5px;
  cursor: pointer;
  opacity: 0;
  z-index: 2;
  -webkit-touch-callout: none;
}
#menuToggle span{
  display: block;
  width: 33px;
  height: 4px;
  margin-bottom: 5px;
  position: relative;
  background: black;
  border-radius: 3px;
  z-index: 1;
  transform-origin: 4px 0px;
  transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
              background 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
              opacity 0.55s ease;
}
#menuToggle span:first-child{
  transform-origin: 0% 0%;
}
#menuToggle span:nth-last-child(2){
  transform-origin: 0% 100%;
}
#menuToggle input:checked ~ span{
  opacity: 1;
  transform: rotate(45deg) translate(-2px, -1px);
  background: black;
}
#menuToggle input:checked ~ span:nth-last-child(3){
  opacity: 0;
  transform: rotate(0deg) scale(0.2, 0.2);
}
#menuToggle input:checked ~ span:nth-last-child(2){
  transform: rotate(-45deg) translate(0, -1px);
}
#menu{
  position: absolute;
  max-width: 400px;
  width: 370px;
  max-height: 100vh;
  margin: -90px 0 0 -290px;
  padding: 50px;
  padding-top: 125px;
  box-sizing: border-box;
  overflow-y: auto;
  background: #d5edf4;
  border-radius: 0px 40px 0px 40px;
  list-style-type: none;
  -webkit-font-smoothing: antialiased;
  transform-origin: 0% 0%;
  transform: translate(100%, 0);
  transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0);
}
#menu li
{
  padding: 10px 0;
  font-size: 22px;
}
#menu li label
{
cursor: pointer;
color: black;
text-align: right;
width: 100%;
}
#menuToggle input:checked ~ ul
{
  transform: none;
}
.heroheading{
  border-radius: 40px;  
  background-image:
    linear-gradient(10deg, black, rgba(0, 0, 0, 0.01)),
    url('assets/hyattdreamspuntacana.jpg');
    width: 100%;
    height: 500px;
    background-size: cover;
    padding-top: 10px;
  transform: translateZ(0);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.heroVideo{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}
.heroheading h1{
  color: white;
  padding-left: 20px;
  justify-content: center;
  align-items: center;
}
/*.heroheading a{
  padding-left:20px;
  padding-bottom: 150px;
}*/
@media (min-width: 768px) {
.heroheading{
  border-radius: 40px;  
  background-image:
    linear-gradient(10deg, black, rgba(0, 0, 0, 0.01)),
    url('assets/hyattdreamspuntacana.jpg');
    width: 100%;
    height: 900px;
    background-size: cover;
    background-position: center center;
    padding-top: 50px;
  transform: translateZ(0);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.heroheading h1{
  font-size: 80px;
}
}
.title-block{
  padding-top: 40px;
  position: relative;
  z-index: 2;
}
.sectioncolumn{
  display: flex;
  justify-content: center;
}
.sectioncolumnDiv{
  flex: 50%;
  padding: 10px;
}
.sectioncolumnImg{
  width: 100%;
  max-width: 550px;
  border-radius: 40px;
  transform: translateZ(0);
}
#planStart{
  border: 2px solid #d95b94;
  border-radius: 40px;
  background-image:
    linear-gradient(rgba(255,255,255,0.8), rgba(255,255,255,0.8)),
    url('assets/hyattdreamspuntacana.jpg');
  background-size: cover;
  background-position: center center;
  width: 100%;
  transform: translateZ(0);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.planStartcontent{
  max-width: 1200px;
  padding: 20px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 768px) {
#planStart{
  border: 2px solid #d95b94;
  border-radius: 40px;
  background-image:
    linear-gradient(rgba(255,255,255,0.8), rgba(255,255,255,0.8)),
    url('assets/hyattdreamspuntacana.jpg');
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 500px;
  transform: translateZ(0);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.planStartcontent{
  padding: 20px;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
}
.socialIcon{
  width:100%;
  max-width:100px;
}
.lineDiv {
  border-top: 2px solid #d95b94;
  border-radius: 5px;
  margin-top: 30px;
}
.blockquote-wrapper {
   display: flex;
   justify-content: center;
   align-items: center;
}
.blockquote {
    position: relative;
    font-family: Verdana, sans-serif;
    max-width: 720px;
    margin: 20px 80ox 20px 80px;
    align-self: center;
    z-index: 4;
}
.blockquote h4 {
    font-family: Verdana, sans-serif;
    position: relative;
    color: #D0F252;
    font-size: 18px;
    font-weight: normal;
    line-height: 1.5;
    margin: 0;
    border: 2px solid #fff;
    border: solid 2px;
    border-radius:20px;
    padding: 25px;
}
.blockquote h4:after {
    content:"";
    position: absolute;
    border: 2px solid #D0F252;
    border-radius: 0 100% 0 0;
    width: 60px;
    height: 60px;
    bottom: -62px;
    left: 50px;
    border-bottom: none;
    border-left: none;
    z-index: 4; 
}
.blockquote h4:before {
    content:"";
    position: absolute;
    width: 80px;
    border: 6px solid black;
    bottom: -3px;
    left: 50px;
    z-index: 3;
}
.blockquote p {
    position: relative;
    color: #ffffff;
    font-size: inherit;
    font-weight: 400;
    font-size: 17px;
    line-height: 1.2;
    margin: 0;
    padding-top: 15px;
    z-index: 2;
    margin-left:150px;
}
.blockquote p:first-letter {
  margin-left:-12px;
}
.footer-progress-bar {
   position: sticky;
   bottom: 10px;
   width: 100%;
   z-index: 99;
   margin-top: 40px;
    }
.progress-container {
   width: 100%;
   height: 8px;
   position: relative;
   overflow: visible;
    }
.progress-bar {
   height: 8px;
   background: #C10FF2;
   width: 0%;
   border-radius: 20px;
   transition: width 0.1s linear;
    }
.confetti {
  position: fixed;
  right: 0;
  bottom: 8px;
  width: 0;
  height: 0;
  overflow: visible;
  pointer-events: none;
  z-index: 999;
  display: none;
}
.progress-bar.complete ~ .confetti {
  display: block;
}
.confetti-piece {
  width: 8px;
  height: 8px;
  position: absolute;
  bottom: 0;
  opacity: 0;
  animation: confetti-blast 3.5s linear forwards;
  border-radius: 50%;
  --dx: 0vw;
  --fall-x: 0vw;
  --rotate: 720deg;
  --peak-height: -50vh;
}
@keyframes confetti-blast {
  0% {
    transform: translate(0, 0) scale(1) rotate(0deg);
    opacity: 1;
  }
  10% {
    transform: translate(calc(var(--dx) * 0.4), calc(var(--peak-height) * 0.4)) rotate(calc(var(--rotate) * 0.3));
    opacity: 1;
  }
  20% {
    transform: translate(calc(var(--dx) * 0.7), calc(var(--peak-height) * 0.7)) rotate(calc(var(--rotate) * 0.5));
    opacity: 1;
  }
  30% {
    transform: translate(var(--dx), var(--peak-height)) rotate(var(--rotate));
  }
  100% {
    transform: translate(var(--dx), 0vh) rotate(calc(var(--rotate) * 2));
    opacity: 0;
  }
.footer-progress-bar {
  display: none;
}
.progress-container {
display: none;
}
.progress-bar {
display: none;
}
  }
.highlight-container, .highlight {
  position: relative;
}
.highlight-container {
  display: inline-block;
}
.highlight-container:before {
  content: " ";
  display: block;
  height: 90%;
  width: 100%;
  margin-left: -3px;
  margin-right: -3px;
  position: absolute;
  background: #f3cb0d;
  transform: rotate(2deg);
  top: -1px;
  left: -1px;
  border-radius: 20% 25% 20% 24%;
  padding: 10px 3px 3px 10px;
}
