html,
body {
  margin: 0;
  scroll-behavior: smooth;
  -ms-overflow-style: none;
  font-family: 'Work Sans', sans-serif;
}


/* HOME PAGE */
.page {
  background-color: #FDECE0;
  position: relative;
  display: block;
  min-height: 100vh;
}

.btn {
  border-radius: 0px !important;
  font-weight: bold !important;
  width: 100% !important;
  max-width: 200px;
}

a {
  border-radius: 0px !important;
  font-weight: bold !important;
  width: 100% !important;
  max-width: 200px;
}

/* NAV BAR */

nav {
  height: 73px;
  top: 0;
  left: 0;
  right: 0;
  z-index: 2;
}

.nav__bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  margin-right: 50px;
  margin-left: 40px;
}

.first__nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: 25px;
  font-weight: bold;
  list-style: none;
  cursor: pointer;
  color: #111;
  text-decoration: none;
  font-family: 'Comfortaa', sans-serif;
  width: 100%;
}

.logo:hover {
  color: #111;
}

.nav__button {
  display: none;
}

.nav__links {
  display: flex;
  list-style-type: none;
  margin-bottom: 0;
}

.nav__link {
  cursor: pointer;
}

.nav__link a {
  color: #212529;
  text-decoration: none;
  margin-left: 1vw;
  margin-right: 1vw;
  cursor: pointer;
  transition: 250ms;
}

.nav__link:hover {
  transform: scale(1.1);
}

nav.nav__bar__home {
  background: #FDECE0;
}

.fa {
  margin-left: 5px;
}

.main__text {
  display: flex;
  flex-direction: column;
  align-self: center;
  justify-content: center;
  margin-left: 2vh;
  margin-right: 2vh;
}

.main__title {
  text-align: center;
  margin-top: 2.5vw;
  margin-bottom: 1.5rem;
  font-size: 4rem;
  font-weight: bold;
  font-family: 'Playfair Display', 'Times', 'Times New Roman', serif;
  letter-spacing: 1px;
  padding-left: 3vw;
  padding-right: 3vw;
}

.main__subtitle {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  text-align: center;
  font-size: 1.8rem;
  padding: 0 3vw;
  margin-bottom: 0.5rem;
}

.subtitle-row {
  display: inline;
}

.dot {
  display: inline;
  padding: 0 0.3rem;
}

#price {
  font-weight: bold !important;
  color: #1E3A8A;
  font-size: 2.5rem;
}

.buttons {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
}

.action__btn {
  margin-left: 20px;
  margin-top: 30px;
  width: 12.5vw;
  height: 7.5vh;
}

.bck__img {
  flex: 0.5;
  max-height: 23vw;
  width: 100%;
  object-fit: contain;
  z-index: 1;
  position: relative;
}

.bck__img.-mt-2 {
  margin-top: -2.5rem;
}

@media screen and (max-width:800px) {
  .bck__img {
    max-height: 70vw;
  }
}





/* Plans Price */

/* .plans {
  padding-top: 5vh;
  padding-bottom: 5vh;
  display: flex;
  justify-content: center;
  background-color: white;
}

.small__plans {
  display: flex;
  flex-direction: column;
}

.price__row {
  display: flex;

}

.detailed__row {
  display: flex;
  flex-direction: column;
  height: 15vh;
  width: 20vw;
  padding: 2vw;
  border:1px solid black;
  text-align: center;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.big__plans {
  display: flex;
  flex-direction: column;
  justify-content:center;
  height: 30vh;
  width: 20vw;
  padding: 2vw;
  border:1px solid black;
  text-align: center;
} */



/* Feature Product */


.feature {
  background-color: white;
  padding-top: 10vh;
}

.feature__content {
  display: flex;
  /* margin-bottom: 15vh; */
  flex: 0.5;
  justify-content: space-evenly;
  margin: 0 4vw 10vh 4vw;
  align-items: center;
}

.feature__details {
  margin-right: 5vw;
  width: 46%;
}

.feature>.feature__content>.feature__details:nth-child(odd) {
  margin-right: 5vw;
}

.feature>.feature__content>.feature__details:nth-child(even) {
  margin-left: 5vw;
}

.feature__image {
  flex: 0.5;
  max-height: 35vw;
  object-fit: contain;
  z-index: 1;
  position: relative;
  width: 46%;
}

.feature__info {
  max-width: 20px;
}

.feature__title {
  font-weight: bold;
  font-size: 3rem;
  font-family: 'Playfair Display', 'Times', 'Times New Roman', serif;
}

.feature__description {
  margin-top: 20px;
  margin-bottom: 20px;
  font-size: 1.25rem;
}

.feature__btn {
  width: 15vw;
  height: 7.5vh;
}

.feature__banner {
  max-height: 35vw;
  width: 100%;
  object-fit: contain;
  z-index: 1;
  position: relative;
}


/* TESTIMONIALS */
.testimonial {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: start;
  gap: 1rem;
  padding-left: 3vh;
  padding-right: 3vh;
  margin-top: 12vh;
}

.testimonial__heading {
  text-align: center;
  font-size: 3rem;
  font-weight: bold;
  padding-top: 4vh;
  font-family: 'Playfair Display', 'Times', 'Times New Roman', serif;
}

.testimonial__item {
  display: flex;
  flex-direction: column;
  text-align: center;
}

.testimonial__image {
  width: 12rem;
  height: 12rem;
  object-fit: cover;
  object-position: center;
  border-radius: 999px;
  margin-bottom: 10px;
  margin: auto;
  overflow: hidden;
}

.testimonial__title {
  font-weight: bold;
  text-transform: uppercase;
  margin-top: 10px;
  display: block;
}

.testimonial__subtitle {
  text-transform: uppercase;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
  position: relative;
  display: block;
}

.testimonial__subtitle::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 5rem;
  height: 1px;
  background: #aaa;
}

.testimonial__description {
  font-style: italic;
  width: 90%;
  margin: auto;
  color: #444;
}

.Godaddy_content-call-us-back {
  font-weight: 300;
  font-size: 23px;
  text-align: center;
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #00a4a6;
  color: white;
}

.Godaddy_content_navbar-button {
  background-color: black;
  color: white;
}

.Godaddy_content_navbar-button {
  border: 1px black;
  display: inline-block;
  border: none;
  padding: 10px 20px 10px 20px;
  margin: 0;
  text-decoration: none;
  background: black;
  color: #ffffff;
  font-family: sans-serif;
  font-size: 1rem;
  cursor: pointer;
  text-align: center;
  transition: background 250ms ease-in-out, transform 150ms ease;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.Godaddy_content_navbar-button:hover,
.Godaddy_content_navbar-button:focus {
  background: black;
}

.Godaddy_content_navbar-button:focus {
  outline: 1px solid #fff;
  outline-offset: -4px;
}

.Godaddy_content_navbar-button:active {
  transform: scale(0.99);
}

.Godaddy_content_navbar-text {
  color: white !important;
}


/* GUIDES */

.guides {
  margin: 0;
  margin-top: 10vh;
  background-color: #EBF3F8;
}

.guides__details {
  max-width: 740px;
  margin: 0;
}

.guides__info {
  font-size: 15px;
}

.guides__title {
  font-size: 50px;
  font-weight: bold;
  font-family: 'Playfair Display', 'Times', 'Times New Roman', serif;
}


/* QUESTIONS */

.questions {
  margin-top: 10vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 10vh;
}

.questions__title {
  font-size: 3rem;
  text-align: center;
  margin-left: 11vw;
  margin-right: 11vw;
  font-weight: bold;
  font-family: 'Playfair Display', 'Times', 'Times New Roman', serif;
}

.questions__subtitle {
  margin-top: 2vh;
  font-weight: bold;
  font-size: 1.2rem;
}

.questions__row {
  display: flex;
  flex-direction: row;
  justify-content: center;
}

.que__ans {
  width: 40vw;
  margin-left: 2.5vw;
  margin-right: 2.5vw;
  font-weight: lighter;
}

.que__ans h3 {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
  margin-top: 1.5rem;
}






/* FOOTER */

.page .footer {
  background-color: #111;
  color: white;
}

.signup {
  display: flex;
  justify-content: space-between;
  padding: 5vh 5vw 5vh 5vw;
  border-bottom: 1px solid #444;
}


.signup__text {
  font-weight: bold;
  font-size: 3vh;
}

.email__input {
  background-color: #2b2b2b;
  border: 1px solid #2b2b2b;
  color: #f5f7f8;
  height: 6vh;
  width: 30vw;
  margin-bottom: 2vh;
  padding: 0 12px;
}

.signup__btn {
  height: 6vh;
  width: 10vw;
}

.call__action {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  max-width: 900px;
  width: 30vw;
}

.call__action h3 {
  font-weight: bold;
  font-size: 3vw;
}

.info__div {
  margin-top: 40px;
  margin-bottom: 40px;
  text-align: center;
  border-bottom: 1px solid #474747;
}

.info__links {
  display: flex;
  justify-content: space-evenly;
  padding-bottom: 50px;
  border-bottom: 1px solid #474747;

}


.footer__title {
  font-weight: bold;
  color: white !important;
  font-size: 20px;
}

.footer__links {
  list-style: none;
  padding: 0;
  color: #f5f7f8;
}

.footer__link {
  color: #f5f7f8;
  font-size: 15px;

}

.nav__link a.active {
  position: relative;
}

.nav__link a.active::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: rgb(104, 104, 104);
  /* background-color: rgb(255, 247, 247); */
}

.copyright {
  padding: 20px 0;
  text-align: center;
}

.copyright__text {
  font-size: 15px;
}

@media screen and (max-width: 850px) {

  .nav__bar {
    margin: 0 2vh;
    padding-top: 0.5rem;
    flex-direction: column;
  }

  .first__nav {
    width: 95%;
  }


  .second__nav {
    width: 100%;
    z-index: 999;
    background-color: rgb(253, 236, 224);
  }

  @media screen and (max-width:800px) {
    .terms__new {
      width: 100vw;
      background-color: white;
      padding: 0 10px;
    }

    .privacy__new {
      width: 100vw;
      background-color: #daf2e4;
      padding: 0 10px;
    }
  }

  .second__trust {
    width: 100vw;
    background-color: #d9f0ed;
  }

  .reseller__nav {
    background-color: #f6f1ef;
    position: absolute;
    top: 60px;
    left: 0;
  }

  .second_nav_pricing {
    background-color: white;
    width: 100%;
    position: absolute;
    top: 70px;
    z-index: 999;
  }

  .nav__links {
    flex-direction: column;
    width: 100%;
    transition: all .3s;
    visibility: visible;
    opacity: 1;
    z-index: 10;
    padding-left: 20px;
  }

  .nav__links.hidden-in-md {
    max-height: 0;
    visibility: hidden;
    opacity: 0;
    transition: max-height .3s;
    z-index: -1;
  }

  .nav__link {
    padding-top: 5px;
    padding-bottom: 5px;
    border-bottom: none;
  }

  .nav__button {
    display: inline-block;
    width: auto !important;
    font-size: 1.3rem;
  }

  .main__title {
    font-size: 3.2rem;
  }

  .main__subtitle {
    font-size: 1.5rem;
  }

  #price {
    font-size: 1.8rem;
    margin-top: 5px;
  }


  .buttons {
    flex-direction: column;
    align-items: center;
    margin-bottom: 4vh;
    padding-left: 3vh;
    padding-right: 3vh;
  }

  .action__btn {
    margin-top: 10px;
    margin-bottom: 10px;
    display: block;
    max-width: 100%;
    margin-left: 0;
  }

  .feature>.feature__content:nth-child(odd) {
    flex-direction: column-reverse;
  }

  .feature>.feature__content:nth-child(even) {
    flex-direction: column;
  }

  .feature>.feature__content.guides {
    flex-direction: column;
  }

  .feature__image {
    height: auto;
    max-height: 100%;
  }

  .feature__title {
    font-size: 2.5rem;
  }

  .feature__details {
    margin-top: 3vh;
    margin-left: 5vw;
  }

  .feature__btn {
    width: 100%;
    max-width: 100%;
    display: block;
    font-size: 120%;
  }

  .testimonial {
    grid-template-columns: 1fr;
    row-gap: 3rem;
  }

  .bck__img.-mt-2 {
    margin-top: 0;
  }

  .guides {
    padding-bottom: 4vh;
  }

  .questions__row {
    flex-direction: column;
  }

  .que__ans {
    width: 85vw;
    margin-left: 5vw;
    margin-right: 2.5vw;
  }

  .signup {
    flex-direction: column;
  }

  .email__signup .email__input {
    width: 100%;
  }

  .call__action {
    padding-top: 1rem;
    width: 100%;
  }

  .info__links {
    flex-wrap: wrap;
  }

  .info__link {
    width: 50%;
    padding-left: 1rem;
  }
}

.get-help-btn {
  max-width: 150px !important;
}



.custom_content {
  padding: 0 !important;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  /* spacing between items */
  height: 30vw;
  /* or whatever height you need */
}

.custom_content-wrapper {
  display: flex;
  flex-direction: column !important;
  padding-bottom: 70px !important;
  padding-top: 40px;
}

.custom_content-wrapper .feature__title {
  margin-bottom: 30px;
}

.custom_content img,
.custom_content video {
  width: 45vw !important;
  height: 30vw !important;
  object-fit: cover;
  /* makes media look clean without distortion */
}


@media screen and (max-width: 800px) {

  /* Image & Button Adjustments */
  .bck__img {
    max-height: 70vw;
  }

  .main__title {
    font-size: 3.2rem;
    text-align: center !important;
    padding-left: 5vw;
    padding-right: 5vw;
    width: 100%;
  }

  .main__subtitle {
    flex-direction: column;
    font-size: 1.5rem;
  }

  .subtitle-row {
    display: block;
  }

  .dot {
    display: block;
    line-height: 1;
    font-size: 2rem;
  }

  .main__text {
    align-items: center;
    text-align: center;
  }

  #price {
    font-size: 1.8rem;
    margin-top: 5px;
    text-align: center;
  }

  .buttons {
    flex-direction: column;
    align-items: center;
    margin-bottom: 4vh;
    padding-left: 3vh;
    padding-right: 3vh;
  }

  .action__btn {
    margin-top: 10px;
    margin-bottom: 10px;
    display: block;
    max-width: 100%;
    margin-left: 0;
  }

  .feature {
      padding-top: 1vh;
  }

  /* Navbar Mobile */
  .nav__bar {
    margin: 0 2vh;
    padding-top: 0.5rem;
    flex-direction: column;
  }

  .first__nav {
    width: 95%;
  }

  .nav__button {
    display: inline-block;
    width: auto !important;
    font-size: 1.3rem;
  }

  .nav__links {
    flex-direction: column;
    width: 100%;
    transition: all .3s;
    visibility: visible;
    opacity: 1;
    z-index: 10;
    padding-left: 20px;
  }

  .nav__links.hidden-in-md {
    max-height: 0;
    visibility: hidden;
    opacity: 0;
    transition: max-height .3s;
    z-index: -1;
  }

  .nav__link {
    padding-top: 5px;
    padding-bottom: 5px;
    border-bottom: none;
  }

  /* Feature Sections */
  .feature__content.reverse-on-mobile {
    flex-direction: column-reverse !important;
  }

  .feature__content {
    margin-bottom: 0;
  }

  .feature>.feature__content:nth-child(odd),
  .feature>.feature__content:nth-child(even),
  .feature>.feature__content.guides {
    flex-direction: column;
  }

  .feature__image {
    height: auto;
    max-height: 100%;
    width: 90%;
  }

  .feature__details {
    margin-top: 3vh;
    text-align: center;
    align-items: center;
    width: 100%;
  }

  .feature__title {
    font-size: 2.5rem;
    text-align: center !important;
  }

  .feature__description {
    text-align: center !important;
  }

  .feature__btn {
    width: 100%;
    max-width: 100%;
    display: block;
    font-size: 120%;
  }

  /* Testimonials */
  .testimonial {
    grid-template-columns: 1fr;
    row-gap: 3rem;
  }

  .testimonial__item {
    text-align: center;
    align-items: center;
  }

  /* Guides */
  .guides {
    padding-bottom: 4vh;
  }

  .guides__details {
    text-align: center;
    margin: 0 auto;
  }

  .guides__title,
  .guides__info {
    text-align: center;
  }

  /* Questions */
  .questions__row {
    flex-direction: column;
  }

  .questions__title {
    font-size: 2rem !important;
    text-align: center !important;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    padding: 0 5vw;
  }

  .questions__subtitle {
    text-align: center;
  }

  .que__ans {
    width: 90vw !important;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

  .que__ans h3,
  .que__ans p {
    text-align: center;
  }

  /* Signup Section */
  .signup {
    flex-direction: column;
  }

  .email__signup .email__input {
    width: 100%;
  }

  .call__action {
    padding-top: 1rem;
    width: 100%;
  }

  /* Info links */
  .info__links {
    flex-wrap: wrap;
  }

  .info__link {
    width: 50%;
    padding-left: 1rem;
  }

  /* Custom Content */
  .custom_content-wrapper {
    padding-right: 5vw !important;
    padding-left: 5vw !important;
    text-align: center;
  }

  .custom_content-wrapper,
  .custom_content {
    flex-direction: column;
    height: auto;
  }

  .custom_content img,
  .custom_content video {
    width: 90vw !important;
    height: 400px !important;
  }

  /* Misc */
  .Godaddy_content_navbar-text {
    color: black !important;
  }

  /* .nav__link a.active {
    width: 75px;
  } */

  .bck__img.-mt-2 {
    margin-top: 0;
  }

  /* Fix: Nested media was invalid */
  .terms__new {
    width: 100vw;
    background-color: white;
    padding: 0 10px;
  }

  .privacy__new {
    width: 100vw;
    background-color: #daf2e4;
    padding: 0 10px;
  }

  .second__trust {
    width: 100vw;
    background-color: #d9f0ed;
  }

  .reseller__nav {
    background-color: #f6f1ef;
    position: absolute;
    top: 60px;
    left: 0;
  }

  .second_nav_pricing {
    background-color: white;
    width: 100%;
    position: absolute;
    top: 70px;
    z-index: 999;
  }
}

.video-container {
  position: relative;
  display: inline-block;
}

.video-container.with-overlay::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.play-button-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  cursor: pointer;
}

.play-button-overlay .fa {
  color: white;
  font-size: 64px;
  opacity: 0.8;
  text-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
  transition: all 0.3s ease;
}

.play-button-overlay:hover .fa {
  opacity: 1;
  transform: scale(1.1);
}

.video-container video {
  cursor: pointer;
}