:root {
  --primary-bg-color: #f8d4b5;
  --logo-triangle: #264653;
  --logo-circle: #2a9d8f;
  --logo-text: #2c3e50;

  --gradient-1-from: #6ac7bc;
  --gradient-1-to: #f8d4b5;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  background-color: transparent;
  font-family: "Merriweather";
  font-size: 16px;
}

#tsparticles {
  opacity: 0.5;
}

body {
  line-height: 1.6;
}

header {
  position: sticky;
  top: 0;
  background-color: var(--primary-bg-color);
  color: black;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  z-index: 1000;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

header .logo svg {
  width: 300px;
  height: 48px;
}

/* ************************* */

header nav {
  position: relative;
  margin-right: 20px;
}

header nav ul {
  list-style: none;
  display: flex;
}

header nav ul li {
  margin-left: 20px;
}

header nav ul li a {
  color: var(--logo-triangle);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s;
}

header nav ul li a:hover {
  color: var(--logo-circle);
  font-weight: 600;
}

/* ************************* */

header .hamburger {
  display: none;
  font-size: 20px;
  cursor: pointer;
}

/* ************************* */

.language-selector {
  background-color: var(--primary-bg-color);
  color: var(--logo-triangle);
  border: none;
  font-weight: 600;
  transition: color 0.3s;
  cursor: pointer;
}

.language-selector:hover {
  color: var(--logo-circle);
  font-weight: 600;
}

/* ************************* */

main {
  padding: 10px;
  max-width: 700px;
  margin: 0 auto;
}

section {
  padding: 0px;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;

  margin-bottom: 80px;
  padding-top: 0px;
  text-align: center;
}

h1,
h2,
h3 {
  color: black;
}

.logo-arrow,
.logo-circle {
  cursor: pointer;
}

/* ************************* */

#slogan {
  margin: 20px 0;
  padding: 15px;
  background: linear-gradient(
    135deg,
    var(--gradient-1-from) 0%,
    var(--gradient-1-to) 100%
  );
  border-radius: 8px;
  text-align: center;
  color: var(--logo-text);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  animation: fadeIn 1s ease-out;
}

#slogan h1 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #333;
}

#slogan i {
  font-size: 1.7rem;
  color: var(--primary-bg-color);
}

/* ************************* */

#problems {
  margin: 0 auto;
  padding: 10px 50px;
  border-radius: 8px;
  text-align: justify;
}

.problems-list-container {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.problem-item i {
  font-size: 1.5rem;
  margin-right: 10px;
  color: #333
}

.problem-item {
  font-size: 1.1rem;
  color: black;
  line-height: 1.8;
  font-weight: 500;
  position: relative;
}


/* ************************* */

#offer {
  margin: 20px 0;
  padding: 15px 30px;
  background: linear-gradient(
    135deg,
    var(--gradient-1-from) 0%,
    var(--gradient-1-to) 100%
  );
  border-radius: 8px;
  text-align: center;
  color: 2c3e50;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  animation: fadeIn 1s ease-out;
}

#offer h2 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 0px;
}

#offer p {
  font-size: 1.3rem;
  line-height: 1.8;
}

.highlight-text {
  font-weight: bold;
  color: black;
  font-size: 1.3rem;
}

/* ************************* */

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ************************* */

.h2-section-name {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 25px;
  color: var(--logo-text);
  text-align: center;

  background-color: var(--primary-bg-color);
  border: 2px solid var(--primary-bg-color);
  border-radius: 10px;
  padding: 10px 30px;
  display: inline-block;
}

.h2-section-name i {
  font-size: 1.8rem;
}

/* ************************* */

#advantages {
  margin-top: 80px;
  border-radius: 8px;
  text-align: center;
}

.advantage-item {
  margin-bottom: 15px; 
}

.advantage-item h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0px;
  color: var(--logo-text);
}

.advantage-item p {
  font-size: 1.0rem;
  color: black;
  line-height: 1.8;
  text-align: center;
  font-weight: 500;
  padding-left: 0px;
  position: relative;
}

.advantage-item i {
  font-size: 2rem;
  margin-left: 10px;
  color: var(--logo-circle);
}

/* ************************* */

.hww-and-services-list {
  padding: 0px;
  border-radius: 8px;
  margin-bottom: 20px;
  text-align: left;
}

.hww-and-services-list h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--logo-text);
  margin-bottom: 10px;
  margin-top: 10px;
  text-align: justify;
}

.hww-and-services-list i {
  font-size: 2rem;
  margin-right: 20px;
  color: var(--logo-circle);
}

.hww-and-services-list p {
  font-size: 1.0rem;
  color: black;
  line-height: 1.8;
  text-align: justify;
  margin-left: 20px;
}

/* ************************* */

#services {
  /*max-width: 700px;*/
  margin-left: auto;
  margin-right: auto;
}

.service-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--logo-text);
  transition: color 0.3s;
  margin-left: 20px;
}

.hww-and-service-content ul {
  list-style-type: none;
  padding-left: 40px;
  line-height: 1.8;
  font-size: 1.1rem;
  color: black;
  display: inline-block;
  text-align: justify;
}

.hww-and-service-content li {
  text-align: justify;
}

.hww-and-service-content li::before {
  content: "●";
  position: absolute;
  left: 30px;
  color: var(--logo-circle);
  font-size: 1.2rem;
  transition: content 0.3s;
}

.service-description {
  font-size: 1.1rem;
  color: black;
  margin-bottom: 10px;
}

/* ************************* */

.swiper-slide {
  padding: 20px 60px;
  margin-bottom: 20px;
  border-radius: 8px;
  text-align: justify;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.swiper-slide h3 {
  font-size: 1.2rem;
  color: #494d53;
  margin-bottom: 10px;
  text-align: center;
}

.swiper-slide p,
.swiper-slide strong {
  font-size: 1rem;
  color: black;
  line-height: 1.6;
}

.swiper-slide i {
  font-size: 150px;
  color: #2a9d8f;
  height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.swiper-pagination-bullet {
  background-color: var(--logo-circle);
  transition: 0.3s;
}

.swiper-button-next,
.swiper-button-prev {
  color: var(--logo-circle);
  transition: 0.3s;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  color: var(--logo-triangle);
}

/* ************************* */

blockquote {
  font-style: italic;
  font-size: 1.0rem;
  color: black;
  position: relative;
}

blockquote::before,
blockquote::after {
  color: var(--logo-circle);
  font-size: 1em;
  font-weight: bold;
}

blockquote::before {
  content: "“";
  position: absolute;
  left: -1em;
}

blockquote::after {
  content: "”";
}

/* ************************* */

.work-image {
  width: 100%;
  max-width: 500px;
  max-height: 250px;
  height: auto;
  object-fit: contain;
  border-radius: 8px;
  margin-bottom: 15px;

  height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ************************* */

.client-image {
  width: 250px;
  height: 250px;
  object-fit: scale-down;
  border-radius: 50%;
  margin-bottom: 15px;

  display: flex;
  align-items: center;
  justify-content: center;
}

/* ************************* */

#pricing {
  padding: 5px;
  border-radius: 8px;
  margin-bottom: 80px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

#pricing strong {
  color: var(--logo-circle);
}

.pricing-list-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}

.pricing-item {
  font-size: 1.1rem;
  color: black;
  font-weight: 500;
  position: relative;
}

/* ************************* */

#contact {
  margin-bottom: 10px;
}

.contact-list {
  list-style-type: none;
  padding-left: 0;
  font-size: 1.1rem;
  color: black;
}

.contact-list li {
  margin-bottom: 15px;
}

.contact-item {
  text-decoration: none;
  color: black;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
}

.contact-item i {
  margin-right: 10px;
  font-size: 1.4rem;
}

.contact-item:hover {
  color: var(--logo-circle);
}

.contact-item {
  transition: color 0.3s;
}

/* ************************* */

/* ************************* */

/* ************************* */

footer {
  background-color: var(--primary-bg-color);
  color: black;
  text-align: center;
  padding: 10px 0;
  margin-top: 20px;
}

/* ************************* */

@media (max-width: 950px) {
  header {
    flex-direction: column;
    text-align: center;
  }

  header nav ul {
    flex-direction: column;
    margin-top: 10px;
    display: none;
  }

  header nav ul li {
    margin-left: 0px;
  }

  header nav ul.active {
    display: flex;
  }

  header .hamburger {
    display: block;
  }

  .service-list {
    grid-template-columns: 1fr;
  }
}
