/* Google Fonts */
@import url("https://fonts.googleapis.com/css2?family=Work+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500&display=swap");

:root {
  --color-black: #000;
  --color-dark: #152f2e;
  --color-white: #fff;
  --color-gray-100: #e4e3e3;
  --color-gray-500: #a2acac;
  --color-gray-900: #6c6c6c;
  --color-yellow: #eacc2c;
  --color-yellow-dark: #ddc126;

  --footer-bg: #152f2e;

  --hover-transition: all 0.3s ease;

  --container-with: 980px;
  --container-padding: 0 2rem;
}

html {
  scroll-behavior: smooth;
  box-sizing: border-box;
  font-size: 62.5%;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: inherit;
}

[data-eastvalley] {
  display: none;
}

body {
  background-color: var(--color-white);
  font-family: "Work Sans", sans-serif;
  font-size: 1.5rem;
  color: var(--color-dark);
  line-height: 1.6;
  font-weight: 400;
}

/* ======= Resets ======= */
ul {
  margin: 0;
  padding: 0;
}

li {
  list-style: none;
}

input,
textarea {
  font-family: inherit;
}

input:focus,
textarea:focus {
  outline: none;
}

button {
  cursor: pointer;
}
img {
  max-width: 100%;
  height: auto;
}

h1 {
  letter-spacing: -3px;
  font-size: 6rem;
  line-height: 6rem;
  color: var(--color-dark);
  font-weight: 600;
}

h2 {
  font-size: 4.8rem;
  font-weight: 600;
  line-height: 1.2;
}

h3 {
  font-size: 3.2rem;
  font-weight: 600;
}

h4 {
  font-size: 2rem;
  font-weight: 600;
}

h5 {
  font-size: 14px;
  font-weight: 600;
}

.container {
  max-width: var(--container-with);
  margin: 0 auto;
  padding: var(--container-padding);
}

.section-bg-gray {
  background-color: var(--color-gray-100);
}

.text-center {
  text-align: center;
}
/* ======= End Resets ======= */

/* ======= Call Section ======= */
.call {
  background-color: var(--color-yellow);
  text-align: center;
  padding: 0.8rem 0;
}

.call h3 {
  font-size: 2.4rem;
  font-weight: 500;
}

.call-link {
  color: var(--color-dark);
  transition: var(--hover-transition);
}

.call-link:hover {
  color: var(--color-black);
}
/* ======= End Call Section ======= */

.logo {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.logo__card {
  width: 70%;
  margin: 0 auto;
  text-align: center;
  margin-bottom: 5rem;
}

@media (max-width: 991.98px) {
  h1 {
    font-size: 5.5rem;
    line-height: 1.5;
  }

  h2 {
    font-size: 4rem;
  }

  h3 {
    font-size: 2.8rem;
  }

  .call h3 {
    font-size: 2rem;
  }
}

@media (max-width: 767.98px) {
  html {
    font-size: 55%;
  }

  body {
    font-size: 2rem;
  }
  h4 {
    font-size: 2.2rem;
  }

  .call {
    padding: 1rem 0;
  }

  .call h3 {
    font-size: 2.1rem;
    font-weight: 600;
  }
}

@media (max-width: 575.98px) {
  h1 {
    font-size: 4.5rem;
    line-height: 1.3;
  }

  h2 {
    font-size: 3.6rem;
  }
}
/* ------------ Start Styling for Header ---------- */
.nav {
  max-width: var(--container-with);
  margin: 0 auto;
  padding: 6rem 2rem 1rem 2rem;
}

.nav__list {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 2rem;
}

.nav__list-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.nav__list-logo h3 {
  font-size: 1.2rem;
  color: var(--color-dark);
  font-weight: 600;
  line-height: 1;
  text-align: right;
  padding-right: 2.5rem;
}

.nav__list-phone {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 42%;
  font-size: 2rem;
  font-weight: 700;
}

.nav__list-phone h3 {
  font-size: 2rem;
  font-weight: 600;
}

.nav__list-phone h3:first-child {
}

.nav__list-phone a {
  text-decoration: underline;
  font-size: inherit;
  color: var(--color-dark);
  transition: var(--hover-transition);
}

.nav__list-phone a:hover {
  color: var(--color-black);
}

@media (max-width: 991.98px) {
  .nav {
    padding: 5rem 2rem 1rem 2rem;
  }

  .nav__list-phone {
    width: 45%;
  }

  .nav__list-phone h3 {
    font-size: 1.9rem;
  }
}

@media (max-width: 767.98px) {
  .nav {
    padding: 0;
    padding-bottom: 3rem;
  }

  .nav__list {
    flex-direction: column;
    align-items: center;
  }

  .nav__list-phone {
    order: -1;
    background-color: var(--color-yellow-dark);
    font-size: 2rem;
    width: 100%;
    padding: 0.8rem 0;
    margin-bottom: 4rem;
  }

  .nav__list-logo img {
    max-width: 25rem;
    height: auto;
  }

  .nav__list-logo h3 {
    display: none;
  }
}

/* Start styling for Hero Section */
.hero {
  display: flex;
  align-items: flex-start;
  padding-bottom: 5rem;
}

.hero__text {
  width: 58%;
  padding-right: 4rem;
}

.hero__text-title {
  margin-bottom: 3rem;
}

.hero__text-desc {
  font-size: 2rem;
  padding-right: 1.5rem;
}

.hero__text-logo {
  display: flex;
  justify-content: center;
  padding-top: 3rem;
  padding-bottom: 2rem;
}

.hero__text-rating {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 45%;
  padding: 0 2rem;
}

.hero__text-google {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 22rem;
  padding: 0 2rem;
}

.hero__text-rolex {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 22rem;
  padding: 0 2rem;
}

.hero__text-rolex img {
  max-width: 130px;
  height: auto;
  margin-bottom: 8px;
}

.hero__text-rating img {
  margin-bottom: 1rem;
}

.hero__text-certified {
  display: flex;
  flex-direction: column;
  width: 55%;
  padding-right: 3rem;
}

.hero__text-certified img {
  max-width: 20rem;
  height: auto;
  margin-bottom: 1rem;
}

.hero__form {
  width: 42%;
  background-color: var(--footer-bg);
  padding: 4rem;
  margin-top: 1rem;
}

.hero__form a {
  color: white;
  text-decoration: underline;
  margin-top: 1rem;
  display: block;
}

.hero__form h3 {
  text-align: center;
  color: var(--color-white);
  line-height: 1;
  margin-bottom: 1rem;
  margin-bottom: 2rem;
}

.hero__form p {
  text-align: center;
  color: var(--color-white);
  line-height: 1.2;
}

.contact__form {
  width: 100%;
}

.contact__form-row {
  display: flex;
  flex-direction: column;
  margin-top: 2rem;
}

.contact__form-row label {
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--color-white);
  margin-bottom: 4px;
}

.contact__form-row input,
.contact__form-row textarea {
  background-color: var(--color-white);
  font-size: 1.5rem;
  color: var(--color-dark);
  line-height: 1.5rem;
  border: 1px solid #d8d8d8;
  border-radius: 4px;
  padding: 1.3rem 1.4rem;
  box-shadow: inset 0px 2px 3px #dddddd;
  -webkit-box-shadow: inset 0px 2px 3px #dddddd;
}

.contact__form-row input[type="date" i] {
  padding: 1.1rem 1.4rem;
}

.contact__form-row textarea {
  height: 85px;
  resize: vertical;
}

.contact__form-btn {
  border: none;
  display: block;
  width: 100%;
  text-align: center;
  background-color: var(--color-yellow);
  border-radius: 5px;
  font-size: 1.8rem;
  color: var(--color-dark);
  font-weight: 600;
  line-height: 2.5rem;
  padding: 1.6rem;
  margin-top: 3rem;
  margin-bottom: 2rem;
  transition: var(--hover-transition);
}

.contact__form-btn:hover {
  background-color: var(--color-yellow-dark);
}

@media (max-width: 991.98px) {
  .hero__form {
    width: 45%;
    padding: 2rem;
  }

  .hero__text {
    width: 55%;
    padding-right: 1rem;
  }

  .hero__text-desc {
    font-size: 1.8rem;
    padding-right: 0;
  }

  .hero__text-rating {
    width: 50%;
    padding: 0 2rem;
  }

  .hero__text-certified {
    width: 50%;
    text-align: center;
    padding-right: 1rem;
  }

  .contact__form-btn {
    padding: 1.2rem;
  }
}

@media (max-width: 767.98px) {
  .hero {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero__text {
    width: 100%;
    padding: 0;
  }

  .hero__text-title {
    text-align: center;
  }

  .hero__text-desc {
    text-align: center;
  }

  .hero__text-certified {
    padding: 0 2rem;
  }

  .hero__text-google,
  .hero__text-rolex {
    width: 28rem;
  }

  .hero__text-certified img {
    max-width: 15rem;
    margin: 0 auto;
  }

  .hero__form {
    width: 100%;
    background-color: var(--footer-bg);
    padding: 4rem 3rem;
  }

  .hero__form h3 {
    margin-bottom: 2rem;
  }
}

@media (max-width: 575.98px) {
  .hero__text {
    padding-bottom: 5rem;
  }
}
/* ------------- End styling for Header--------- */

/* ====== Overlay ======= */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  display: none;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  height: 100%;
  background-color: rgba(207, 207, 207, 0.623);
  z-index: 10;
}

.overlay.active {
  display: flex;
}

.modal {
  position: relative;
  max-width: 70rem;
  background-color: var(--footer-bg);
  text-align: center;
  color: var(--color-white);
  border-top: 5px solid rgb(60, 184, 206);
  padding: 4rem;
  margin-top: 8vh;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
  animation: slide-down 300ms ease-out forwards;
}

.modal-title {
  font-size: 3.2rem;
  margin-bottom: 1rem;
}

.modal_close {
  position: absolute;
  top: -20px;
  right: -16px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 34px;
  height: 34px;
  background-color: var(--color-black);
  border: 3px solid var(--color-white);
  border-radius: 50%;
  font-size: 3rem;
  color: var(--color-white);
  line-height: 1;
}

@media (max-width: 575.98px) {
  .modal {
    max-width: 90%;
  }

  .modal-title {
    font-size: 2.8rem;
  }

  .modal_close {
    width: 30px;
    height: 30px;
    border-width: 2px;
  }
}

@media (max-width: 369.98px) {
  .modal {
    max-width: 90%;
  }
}

@keyframes slide-down {
  from {
    opacity: 0;
    transform: translateY(-5rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* ====== End Overlay ======= */

/* ------------- Start styling for Diamond section --------- */
.diamond {
  display: flex;
}

.diamond__text {
  width: 58%;
  padding-top: 7.2rem;
  padding-right: 14rem;
}

.diamond__text-item {
  margin-bottom: 3rem;
}

.diamond__text-item h4 {
  margin-bottom: 1.5rem;
}

.diamond__image {
  width: 42%;
}

.diamond__image img {
  max-width: 100%;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 991.98px) {
  .diamond__text {
    width: 55%;
    padding-top: 5rem;
    padding-right: 3rem;
  }

  .diamond__image {
    width: 45%;
  }
}

@media (max-width: 767.98px) {
  .diamond__text {
    width: 50%;
    padding-top: 8rem;
    padding-right: 4rem;
  }

  .diamond__image {
    width: 50%;
  }
}

@media (max-width: 575.98px) {
  .diamond-section {
    padding-top: 5rem;
  }

  .diamond {
    flex-direction: column;
  }

  .diamond__text {
    width: 100%;
    padding: 3rem 0;
  }

  .diamond__image {
    order: -1;
    width: 100%;
  }
}
/* ------------- End styling for Diamond section --------- */

/* ------------- Start styling for scottsdale section --------- */
.scottsdale__text {
  width: 73%;
  margin: 0 auto;
  padding: 7rem 0;
}

.scottsdale__text p {
  font-size: 1.8rem;
  margin-top: 6rem;
}

.scottsdale__image {
  margin-bottom: 6rem;
}

.scottsdale__image img {
  width: 100%;
  height: auto;
}

.scottsdale__review {
  position: relative;
  display: flex;
  justify-content: space-between;
  padding-bottom: 6rem;
}

.scottsdale__review::after {
  content: "";
  position: absolute;
  bottom: 3rem;
  left: 50%;
  width: 8rem;
  height: 2px;
  background-color: var(--color-gray-900);
  transform: translateX(-50%);
}

.scottsdale__review-item {
  width: 42rem;
}

.scottsdale__review-desc {
  font-size: 2.4rem;
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 1rem;
}

.scottsdale__logo {
  display: grid;
  grid-gap: 3rem;
  grid-template-columns: repeat(3, 1fr);
}

.scottsdale__logo-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 2rem 2rem;
}

.scottsdale__logo-rolex {
  margin-bottom: 1rem;
}

.scottsdale__logo-img {
  max-width: 11.1rem;
  height: auto;
  margin-bottom: 1rem;
}

@media (max-width: 991.98px) {
  .scottsdale__text {
    width: 100%;
    padding: 5rem 0;
  }

  .scottsdale__text p {
    margin-top: 5rem;
  }

  .scottsdale__review-item {
    width: 50%;
    padding-right: 3rem;
  }

  .scottsdale__review-item:last-child {
    padding-right: 0;
    padding-left: 3rem;
  }
}

@media (max-width: 767.98px) {
  .scottsdale__review {
    flex-direction: column;
    padding-bottom: 3rem;
  }

  .scottsdale__review-item {
    width: 100%;
    text-align: center;
    margin-bottom: 3rem;
    padding: 0 3rem;
    margin-bottom: 5rem;
  }

  .scottsdale__review-item:last-child {
    padding: 0 2rem;
  }
}

@media (max-width: 575.98px) {
  .scottsdale__logo {
    display: none;
  }

  .scottsdale__review::after {
    display: none;
  }
}
/* ------------- End styling for scottsdale section --------- */

/* ------------- Start styling for Purchase section --------- */
.purchase-section {
  padding: 7rem 0 5rem 0;
}

.purchase-section-title {
  font-size: 2.5rem;
  margin-bottom: 7rem;
}

.grid-container {
  display: grid;
  grid-gap: 2rem;
  grid-template-columns: repeat(3, 1fr);
}

.card__title {
  font-size: 2.2rem;
  text-align: center;
  margin-bottom: 2.2rem;
}
.card {
  overflow: hidden;
  text-align: center;
  min-width: 0; /* NEW; needed for Firefox */
}

.card__image img {
  max-width: 100%;
  width: 100%;
  height: 100%;
}

.purchase-section + .process-section .card__image,
.call + .purchase-section .card__image,
.scottsdale-section + .call + .process-section .card__image {
  max-width: 100%;
  width: 100%;
  height: auto;
  overflow: hidden;
  text-align: center;
}

.purchase-section + .process-section .card__image img,
.call + .purchase-section .card__image img,
.scottsdale-section + .call + .process-section .card__image img {
  max-width: unset;
  width: unset;
  height: 200px;
}

.card__content {
  padding: 1.6rem 0 3rem 0;
}
.card__content-title {
  font-size: 1.8rem;
  margin-bottom: 1.6rem;
}

@media (max-width: 991.98px) {
  .purchase-section {
    padding: 5rem 0 4rem 0;
  }

  .purchase-section-title {
    margin-bottom: 5rem;
  }

  .grid-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767.98px) {
  .card__content-title {
    font-size: 2.2rem;
  }
}

@media (max-width: 575.98px) {
  .grid-container {
    grid-template-columns: 1fr;
  }

  .card__content {
    padding: 1.6rem 0 5rem 0;
  }
}
/* ------------- End styling for Purchase section --------- */

/* ------------- Start styling for Process section --------- */
.process-section {
  padding: 7rem 0 5rem 0;
}

.process-section-title {
  font-size: 2.5rem;
  margin-bottom: 7rem;
}

@media (max-width: 991.98px) {
  .process-section {
    padding: 5rem 0 4rem 0;
  }

  .process-section-title {
    margin-bottom: 5rem;
  }
}
/* ------------- End styling for Process section --------- */

/* ------------- Start styling for Sell section --------- */
.sell-section {
  padding: 7rem 0;
}

.sell {
  display: flex;
  align-items: center;
}

.sell__title {
  font-size: 3.2rem;
  line-height: 1;
  margin-bottom: 4rem;
}

.sell__image {
  width: 50%;
}

.sell__text {
  width: 50%;
  padding: 0 2rem 0 7rem;
}

.sell__text-title {
  font-size: 3.2rem;
  line-height: 1;
  margin-bottom: 4rem;
}

.sell__text p {
  margin-top: 1.5rem;
}

@media (max-width: 991.98px) {
  .sell-section {
    padding: 5rem 0;
  }

  .sell__text {
    padding: 0 0 0 2rem;
  }

  .sell__text-title {
    font-size: 2.6rem;
    margin-bottom: 2rem;
  }
}

@media (max-width: 767.98px) {
  .sell {
    flex-direction: column;
    align-items: flex-start;
  }

  .sell__image {
    width: 100%;
    margin-bottom: 3rem;
  }

  .sell__image img {
    width: 100%;
    height: auto;
  }

  .sell__text {
    width: 100%;
    padding: 0;
  }
}
/* ------------- End styling for Sell section --------- */

/* ------------- Start styling for Footer --------- */
.footer {
  background-color: var(--footer-bg);
  padding: 4.2rem 0;
}

.footer__content {
  display: flex;
  align-items: center;
}

.footer__content-logo {
  width: calc(100% - 220px);
}

.footer__content-logo img {
  max-width: 40rem;
  height: auto;
}

.footer__content-text {
  width: 500px;
  font-size: 12px;
  color: var(--color-gray-500);
}

@media (max-width: 991.98px) {
  .footer {
    padding: 4rem 0;
  }

  .footer__content-logo img {
    max-width: 25rem;
  }
}

@media (max-width: 575.98px) {
  .footer {
    padding: 3rem 0;
  }

  .footer__content {
    flex-direction: column;
  }
  .footer__content-logo {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
  }

  .footer__content-text {
    width: 100%;
    text-align: center;
  }
}
/* ------------- End styling for Footer --------- */

.d-sm-block {
  display: none;
}

.d-md-block {
  display: none;
}
@media (max-width: 767.98px) {
  .d-md-block {
    display: block;
  }

  .d-md-none {
    display: none;
  }
}

@media (max-width: 575.98px) {
  .d-sm-block {
    display: block;
  }

  .d-sm-none {
    display: none;
  }
}
