*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.4;
  color: var(--text-color);
  background-color: #fcfcfc;
  min-height: 100vh;
  padding: 0;
}

.contentArea {
  max-width: 1600px;
  margin: 0 auto;
}

.autoContainer {
  width: var(--sectionWidth);
  margin: 0 auto;
}

@media (max-width: 1050px) {
  :root {
    --sectionWidth: 90%;
  }
}

img {
  display: block;
}

.btn {
  font-family: var(--font-figtree);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  font-size: 1.6rem;
  font-weight: 600;
  text-transform: uppercase;
  background-color: var(--whiteColor);
  color: var(--link-color);
  border: 1px solid var(--btn-color);
  padding: 8px 32px;
  border-radius: 5px;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition: all 0.25s ease-in-out;
}

.btn:hover {
  background-color: var(--btn-color);
  color: var(--whiteColor);
}

.btnTheme {
  background-color: var(--btn-color);
  color: var(--whiteColor);
}

.btnTheme:hover {
  background-color: transparent;
  color: var(--btn-color);
}

/* Hero Section Styles */
.downloadEbookHero {
  background-image: url("https://saviom.com/images/download-ebook-banner-img.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 30px 0;
}

.downloadEbookHero_wrapper {
  width: 100%;
}

.downloadEbookHero_container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-evenly;
}

.downloadEbookHero .imgContainer {
  width: 35%;
  border-right: 1px solid var(--whiteColor);
  padding-left: 10%;
  justify-content: center;
}

.downloadEbookHero .imgContainer img {
  width: 70%;
  max-width: 250px;
  height: auto;
  display: block;
}

.downloadEbookHero .textContainer {
  width: 55%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.downloadEbookHero .textContainerHeading {
  font-family: var(--font-outfit);
  font-size: 3.6rem;
  font-weight: 400;
  line-height: 1.4;
  color: var(--whiteColor);
  text-align: center;
}

.downloadEbookHero .hero-btn {
  width: 300px;
  height: 60px;
  font-size: 2rem;
  font-weight: 500;
  margin-top: 20px;
}

@media (max-width: 1370px) {
  .downloadEbookHero .imgContainer {
    padding-left: 5%;
  }
}

@media (max-width: 1050px) {
  .downloadEbookHero {
    padding: 50px 0;
  }
  .downloadEbookHero_container {
    flex-direction: column;
    justify-content: center;
  }
  .downloadEbookHero .imgContainer {
    width: 90%;
    border-right: none;
    padding-left: 0;
    margin-bottom: 20px;
  }
  .downloadEbookHero .imgContainer img {
    width: 100%;
    margin: auto;
  }
  .downloadEbookHero .textContainer {
    width: 90%;
  }
  .downloadEbookHero .textContainerHeading {
    font-size: 3rem;
  }
  .downloadEbookHero .hero-btn {
    width: 50%;
  }
}

@media (max-width: 850px) {
  .downloadEbookHero .textContainerHeading {
    font-size: 2.8rem;
  }
}

@media (max-width: 680px) {
  .downloadEbookHero .textContainerHeading {
    font-size: 2.6rem;
  }
}

@media (max-width: 600px) {
  .downloadEbookHero .textContainerHeading {
    font-size: 2.4rem;
  }
  .downloadEbookHero .hero-btn {
    width: 80%;
    height: 50px;
  }
}

@media (max-width: 450px) {
  .downloadEbookHero .textContainerHeading {
    font-size: 2.2rem;
  }
  .downloadEbookHero .hero-btn {
    width: 100%;
  }
}

/* Product Tour Styles */
.productTour {
  width: var(--sectionWidth);
  margin: 80px auto 0;
  height: auto;
  min-height: 132px;
  background-color: #d3eef7;
  padding: 30px;
  border: 5px solid var(--whiteColor);
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  border-radius: 10px;
}

.productTour_textContainer {
  width: 70%;
  margin-right: 20px;
}

.productTour_textContainer .text {
  font-size: 2rem;
  color: var(--heading-color-2);
  font-weight: 500;
}

.productTour_btnContainer {
  width: 28%;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: flex-end;
}

.productTour_btnContainer .productTour_btn {
  height: 40px;
  padding: 8px 0;
  width: 100%;
  max-width: 140px;
  justify-content: center;
  font-size: 1.4rem;
}

.productTour_btnContainer .productTour_btn:not(:last-child) {
  margin-right: 20px;
}

@media (max-width: 1280px) {
  .productTour {
    justify-content: center;
    height: auto;
    padding: 30px;
  }
  .productTour_textContainer {
    width: 100%;
    margin-right: 0;
  }
  .productTour_textContainer .text {
    text-align: center;
    margin-bottom: 10px;
  }
  .productTour_btnContainer {
    width: 100%;
    justify-content: center;
    margin-top: 20px;
  }
}

@media (max-width: 950px) {
  .productTour_textContainer .text {
    font-size: 1.8rem;
  }
}

@media (max-width: 850px) {
  .productTour {
    margin: 50px auto 40px;
  }
}

@media (max-width: 400px) {
  .productTour {
    padding: 20px;
  }
  .productTour_btnContainer .productTour_btn:not(:last-child) {
    margin-right: 15px;
  }
}

@media (max-width: 350px) {
  .productTour_btnContainer .productTour_btn:not(:last-child) {
    margin-right: 10px;
  }
}
