.hide-on-mobile {
  display: block;
}

.desktop-only {
  display: block;
}

.mobile-only {
  display: none;
}

@media (max-width: 768px) {
  .hide-on-mobile {
    display: none;
  }

  .desktop-only {
    display: none;
  }

  .mobile-only {
    display: block;
  }
}

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

body {
  font-family: Arial, sans-serif;
  background-color: #f8f9fa;
  color: #333;
}
img {
  max-width: 100%;
  height: auto;
}

.container {
  max-width: 1440px;
  margin: 0 auto;
  text-align: center;
}

@media screen and (min-width: 480px) {
  .container {
    width: 480px;
  }
}
@media screen and (min-width: 768px) {
  .container {
    width: 768px;
  }
}
@media screen and (min-width: 1440px) {
  .container {
    width: 1188px;
  }
}

/* header */
.header-section {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  position: relative;
  padding: 10px;
  height: 64px;
  background-color: rgba(255, 255, 255, 1);
}

.header-text {
  font-family: 'Inter', sans-serif;
  font-size: 9px;
  line-height: 22px;
  font-weight: 400;
  color: rgba(86, 93, 109, 1);
  white-space: nowrap;
}

.logo img {
  width: 70px;
  height: auto;
}

@media screen and (min-width: 480px) {
  .logo img {
    width: 80px;
  }
  .header-section {
    padding: 10px 36px;
  }
  .header-text {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }
}
@media screen and (min-width: 768px) {
  .logo img {
    width: 120px;
  }
  .header-text {
    font-size: 14px;
  }
}
@media screen and (min-width: 1440px) {
  .logo img {
    width: 233px;
  }
}

/* main section */
.hero-section {
  display: flex;
  justify-content: center;

  align-items: center;
  text-align: center;
  background-color: rgba(255, 255, 255, 1);
  padding: 10px 0px;
}
.hero-container {
  display: flex;
  flex-direction: column-reverse;
  justify-content: center;
  align-items: center;
}
.hero-description {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 280px;
  text-align: left;
}
.hero-header {
  font-family: 'Archivo', sans-serif;
  font-size: 15px;
  line-height: 21px;
  font-weight: 700;
  color: rgba(23, 26, 31, 1);
}
.hero-text {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  line-height: 18px;
  font-weight: 400;
  color: rgba(144, 149, 161, 1);
  margin: 4px 0 10px;
}

.hero-btn {
  background-color: rgba(255, 203, 113, 1);
  width: 165px;
  height: 39px;
  border-radius: 6px;
  border: none;
  font-size: 12px;
  line-height: 18px;
  font-weight: 400;
  cursor: pointer;
}

.hero-img {
  max-width: 280px;
  height: auto;
}

@media screen and (min-width: 768px) {
  .hero-section {
    padding: 96px 0px 96px 0px;
  }

  .hero-description {
    max-width: 600px;
    align-items: flex-start;
  }
  .hero-header {
    font-size: 25px;
    line-height: 35px;
  }
  .hero-img {
    max-width: 400px;
    margin-left: 25px;
  }
  .hero-container {
    flex-direction: row;
    padding: 0 20px;
  }
  .hero-text {
    font-size: 20px;
    line-height: 30px;
    margin: 4px 0 40px;
  }
  .hero-btn {
    width: 265px;
    height: 52px;
    font-size: 18px;
    line-height: 28px;
  }
}

@media screen and (min-width: 1440px) {
  .hero-header {
    font-size: 48px;
    line-height: 68px;
  }
  .hero-img {
    max-width: 512px;
    margin-left: 65px;
  }
}

/* benefits-section */
.benefits-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 1);
  padding: 0 10px;
}
.benefits-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.benefits-header {
  font-family: 'Archivo', sans-serif;
  font-size: 30px;
  line-height: 42px;
  font-weight: 700;
  color: rgba(23, 26, 31, 1);
}
.benefits-text {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  line-height: 18px;
  font-weight: 400;
  color: rgba(144, 149, 161, 1);
  margin: 4px 0 10px;
  text-align: justify;
}
.benefits-list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  max-width: 1200px;
  margin: 0 auto;
}
.benefits-item {
  width: 240px;
  background-color: #ffffff;
  border-radius: 12px;
  border: 1px solid rgba(255, 203, 113, 1);

  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 13px 10px;
}
.benefits-icon {
  width: 35px;
  height: 35px;
  margin-bottom: 10px;
}
.benefits-snd-header {
  font-family: 'Archivo', sans-serif;
  font-size: 14px;
  line-height: 20px;
  font-weight: 700;
  color: rgba(23, 26, 31, 1);
}

.benefits-text-summary {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  line-height: 18px;
  font-weight: 400;
  color: rgba(66, 72, 86, 1);
  margin: 4px 0 10px;
  text-align: justify;
}
.benefits-text-strong {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  line-height: 18px;
  font-weight: 700;
  color: rgba(23, 26, 31, 1);
}

.benefits-item-text {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  line-height: 18px;
  font-weight: 400;
  color: rgba(144, 149, 161, 1);
  margin: 4px 0 10px;
  text-align: left;
}

@media screen and (min-width: 768px) {
  .benefits-section {
    padding-bottom: 50px;
  }
  .benefits-item-text {
    font-size: 16px;
    line-height: 26px;
  }
  .benefits-header {
    font-size: 40px;
    line-height: 60px;
  }
  .benefits-icon {
    width: 52px;
    height: 52px;
    margin-bottom: 12px;
  }
  .benefits-snd-header {
    font-size: 20px;
    line-height: 30px;
  }
  .benefits-text {
    font-size: 20px;
    line-height: 30px;
    margin: 4px 0 16px;
    text-align: justify;
    padding: 0 10px;
  }
  .benefits-item {
    width: 288px;
    padding: 13px 9px 13px 20px;
  }
  .benefits-text-summary {
    font-size: 20px;
    line-height: 30px;
    margin: 4px 0 10px;
    padding: 0 10px;
  }
  .benefits-text-strong {
    font-size: 20px;
    line-height: 30px;
  }
}

@media screen and (min-width: 1440px) {
}

/* **************  testimonials section */
.testimonials-section {
  width: 100%;
  background-color: #f5f5f5;
  padding: 24px 10px;
}

.testimonials-header {
  text-align: center;
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 30px;
  line-height: 42px;
  margin-bottom: 40px;
}

.testimonials-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.testimonials-item {
  width: 379px;
  /* background-color: #ffffff; */
  border-radius: 12px;
  /* box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); */
  display: flex;
  flex-direction: column;
  text-align: center;
}

.testimonials-item-header {
  display: flex;
  flex-direction: row;
  margin-bottom: 4px;
}
.testimonials-item-header-right {
  margin-left: 14px;
  justify-items: left;
}

.testimonials-profile {
  width: 64px;
  height: 64px;
  border-radius: 32px;
  margin-bottom: 10px;
}

.testimonials-name {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;

  font-size: 16px;
  line-height: 24px;
  margin-bottom: 6px;
}

.testimonials-rating {
  width: 120px;
  height: 24px;
  margin-bottom: 10px;
}

.testimonials-text {
  font-family: 'Inter', sans-serif;
  text-align: left;
  font-weight: 400;

  font-size: 12px;
  line-height: 18px;
  color: #333;
}

@media screen and (min-width: 768px) {
  .testimonials-text {
    font-size: 16px;
    line-height: 26px;
  }
  .testimonials-item {
    width: 379px;
  }
  .testimonials-header {
    font-size: 40px;
    line-height: 56px;
  }
  .testimonials-name {
    font-size: 20px;
    line-height: 30px;
  }
  .testimonials-item-header {
    margin-bottom: 20px;
  }
}

/* contact section */
.contact-section {
  padding: 15px 0;
  background-color: #f8f9fa;
}

.contact-header {
  font-family: 'Archivo', sans-serif;
  font-weight: 400;

  font-size: 14px;
  line-height: 20px;

  margin-bottom: 32px;
  color: rgba(23, 26, 31, 1);
  text-align: center;
}

.contact-description {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
}

.contact-photo-container {
  position: relative;
  width: 260px;
  height: auto;
  margin-bottom: 20px;
}

.contact-img {
  display: block;
  position: relative;
  z-index: 2;
}

.contact-background-img {
  width: 204px;
  position: absolute;
  bottom: -30px;
  right: -20px;
  z-index: 1;
}

.contact-form {
  width: 260px;
  background: transparent;
  border-radius: 8px;
}

.form-group {
  margin-bottom: 1px;
  text-align: left;
}

.form-label {
  font-family: 'Inter', sans-serif;
  text-align: left;
  font-weight: 700;
  display: block;
  font-size: 12px;
  line-height: 18px;
  margin-bottom: 1px;
  color: rgba(66, 72, 86, 1);
}

.form-input,
.form-textarea {
  background-color: rgba(243, 244, 246, 1);
  width: 100%;
  padding: 6px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 12px;
}

.form-textarea {
  resize: none;
}

.form-button {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  width: 100%;
  height: 32px;
  border-radius: 6px;
  background: rgba(255, 203, 113, 1);
  color: rgba(57, 36, 0, 1);
  font-size: 12px;
  line-height: 18px;
  border: none;
  cursor: pointer;
  transition: background 0.3s;
}

.form-button:hover {
  background: rgba(255, 183, 83, 1);
}

@media screen and (min-width: 768px) {
  .contact-section {
    padding: 30px 0;
  }
  .contact-header {
    font-size: 32px;
    line-height: 48px;
  }
  .contact-description {
    flex-direction: row;
    align-items: flex-start;
  }
  .contact-form {
    width: 400px;
  }
  .contact-background-img {
    width: 304px;
    bottom: -50px;
    right: -30px;
  }
  .contact-photo-container {
    width: 300px;
    margin-bottom: 0px;
  }
  .form-label {
    font-size: 14px;
    line-height: 22px;
  }
  .form-input,
  .form-textarea {
    font-size: 15px;
  }
  .form-button {
    font-size: 18px;
    line-height: 28px;
    height: 52px;
  }
  .form-group {
    margin-bottom: 5px;
  }
}

@media screen and (min-width: 1440px) {
  .contact-description {
    flex-direction: row;
  }
  .contact-form {
    width: 629px;
  }
  .contact-photo-container {
    width: 392px;
  }
  .form-input,
  .form-textarea {
    padding: 12px;
  }
}

/* quote */
.quote-section {
  background-color: rgba(30, 33, 40, 1);
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.quote-container {
  max-width: 1188px;
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.quote-bg-img1 {
  position: absolute;
  width: 75px;
  z-index: 1;
  top: 10px;
  left: 10px;
}

.quote-bg-img2 {
  position: absolute;
  width: 75px;
  z-index: 1;
  bottom: 10px;
  right: 10px;
}

.quote-bg-img3 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100px;
  z-index: 0;
}

.quote-text {
  font-family: Inter, sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  text-align: center;
  color: white;
  max-width: 800px;
  z-index: 2;
}

.quote-btn {
  font-family: Inter, sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  width: 224px;
  height: 52px;
  border-radius: 6px;
  border: 1px solid white;
  background-color: transparent;
  color: white;
  margin-top: 20px;
  cursor: pointer;
  transition: 0.3s;
}

.quote-btn:hover {
  background-color: white;
  color: black;
}

@media screen and (min-width: 320px) {
  .quote-section {
    padding: 60px 10px;
  }

  .quote-text {
    font-size: 14px;
    line-height: 24px;
    max-width: 280px;
  }

  .quote-btn {
    width: 180px;
    height: 44px;
    font-size: 16px;
  }
}

@media screen and (min-width: 768px) {
  .quote-section {
    padding: 70px 20px;
  }
  .quote-text {
    font-size: 16px;
    line-height: 26px;
    max-width: 600px;
  }

  .quote-btn {
    width: 200px;
    height: 48px;
    font-size: 17px;
  }

  .quote-bg-img1 {
    width: 120px;
  }

  .quote-bg-img2 {
    width: 120px;
  }

  .quote-bg-img3 {
    width: 150px;
  }
}

@media screen and (min-width: 1440px) {
  .quote-section {
    padding: 80px 0px 160px 0px;
  }

  .quote-text {
    font-size: 18px;
    line-height: 28px;
  }

  .quote-btn {
    width: 224px;
    height: 52px;
    font-size: 18px;
  }

  .quote-bg-img1 {
    width: 177px;
    top: 0px;
    left: 165px;
  }

  .quote-bg-img2 {
    width: 177px;
    bottom: 10px;
    right: 84px;
  }
  .quote-bg-img3 {
    width: 210px;
  }
}

/* footer */
.footer {
  background-color: rgba(255, 203, 113, 1);
  height: 170px;
  display: flex;
  align-items: center;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 1188px;
  margin: 0 auto;
  padding: 0px auto;
}

.footer-logo-img {
  width: 200px;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.footer-menu {
  display: flex;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-info {
  display: flex;
  gap: 4px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-menu-item a {
  font-family: Inter;
  font-weight: 400;
  font-size: 12px;
  line-height: 18px;
  text-decoration: none;
  color: rgba(86, 93, 109, 1);
}
.footer-info-item,
.footer-info-item a {
  font-family: Inter;
  font-weight: 400;
  font-size: 12px;
  line-height: 18px;
  text-decoration: none;
  color: rgba(144, 149, 161, 1);
  transition: 0.3s;
}

.footer-info-item:first-child {
  margin-right: 4px;
}

.footer-menu-item a:hover,
.footer-info-item a:hover {
  color: rgba(30, 33, 40, 1);
}

.footer-social {
  display: flex;
  gap: 5px;
  margin-top: 10px;
}

.footer-social-link {
  display: inline-block;
}

.footer-social-icon {
  width: 24px;
  height: 24px;
  transition: 0.3s;
}

.footer-social-icon:hover {
  opacity: 0.7;
}

@media screen and (min-width: 768px) {
  .footer-info-item:first-child {
    margin-right: 8px;
  }
  .footer {
    height: 133px;
  }
  .footer-logo-img {
    width: 220px;
  }
  .footer-info-item,
  .footer-info-item a {
    font-size: 14px;
    line-height: 22px;
  }
  .footer-menu-item a {
    font-size: 14px;
    line-height: 22px;
  }
  .footer-container {
    flex-direction: row;
    padding: 0px 40px;
  }
  .footer-social {
    margin-top: 0px;
  }
}

@media screen and (min-width: 1440px) {
  .footer-logo-img {
    width: 288px;
  }
  .footer-container {
    padding: 0px 0px;
  }
  .footer-menu {
    gap: 20px;
  }
  .footer-social {
    gap: 15px;
  }
}
