@import url("https://fonts.googleapis.com/css2?family=Kanit:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Titan+One&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
.font-main {
  font-family: "Poppins";
}

.font-secondary {
  font-family: "Kanit";
}

.page-title {
  font-size: 64px;
  line-height: 86%;
  font-weight: 900;
  line-height: 100%;
}

.secondary-title {
  font-size: 86px;
  font-weight: 900;
  line-height: 100%;
  margin-bottom: 15px;
}

.home-paragraph {
  font-size: 24px;
  font-weight: 200;
  line-height: auto;
}

.servicve-item-title {
  font-size: 28px;
  font-weight: 900;
  line-height: 80px;
}

body {
  min-height: 100vh;
  overflow-x: hidden;
}

.background-pattern {
  background-image: url("/background-pattern.webp");
}

.shadow-solid-invalid {
  box-shadow: 10px 10px 0px #7C5240;
}
@media (max-width: 768px) {
  .shadow-solid-invalid {
    box-shadow: 5px 5px 0px #7C5240;
  }
}

.shadow-solid {
  box-shadow: 10px 10px 0px #3F9186;
}
@media (max-width: 768px) {
  .shadow-solid {
    box-shadow: 5px 5px 0px #3F9186;
  }
}

.shadow-solid-transparent {
  box-shadow: 10px 10px 0px rgba(0, 0, 0, 0);
}
@media (max-width: 768px) {
  .shadow-solid-transparent {
    box-shadow: 5px 5px 0px rgba(0, 0, 0, 0);
  }
}

.shadow-solid-title {
  box-shadow: 20px 20px 0px #3F9186;
}
@media (max-width: 768px) {
  .shadow-solid-title {
    box-shadow: 10px 10px 0px #3F9186;
  }
}

.faq-item:nth-child(1) {
  animation-delay: 250ms;
}
.faq-item:nth-child(2) {
  animation-delay: 500ms;
}
.faq-item:nth-child(3) {
  animation-delay: 750ms;
}
.faq-item h3 {
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 12px;
}
.faq-item p {
  position: relative;
  font-size: 20px;
  font-weight: 200;
  padding-left: 30px;
}
.faq-item p::before {
  content: " ";
  position: absolute;
  left: 0px;
  top: 0px;
  width: 6px;
  height: 100%;
  border-radius: 2px;
  background-color: #14C38B;
}
.faq-item b {
  font-weight: 700;
}
@media (max-width: 1024px) {
  .faq-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
  }
  .faq-item p {
    font-size: 18px;
    padding-left: 20px;
  }
  .faq-item p::before {
    width: 6px;
  }
}
@media (max-width: 768px) {
  .faq-item h3 {
    font-size: 15px;
    margin-bottom: 6px;
  }
  .faq-item p {
    font-size: 13px;
    padding-left: 20px;
  }
  .faq-item p::before {
    width: 6px;
  }
}

.portfolio-item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 386px;
  height: 205px;
  border-radius: 30px;
  box-shadow: 0px 9px 4px rgba(5, 4, 13, 0.1529411765);
  overflow: hidden;
  scale: 1;
  transition: all 0.2s ease-in-out;
}

.portfolio-item-link {
  width: 100%;
  height: 100%;
  position: absolute;
}

.portfolio-item-hover {
  transition: opacity 0.3s ease-in-out;
  display: flex;
  flex-direction: column;
  align-items: center;
  /* justify-content: space-between; */
  position: absolute;
  background-color: rgba(5, 4, 13, 0.8039215686);
  width: 386px;
  height: 205px;
  border-radius: 30px;
  opacity: 0;
}

.portfolio-item:hover {
  /* transition: box-shadow .2s linear; */
  box-shadow: 0px 12px 4px rgba(5, 4, 13, 0.2235294118);
  scale: 1.02;
}

.portfolio-item:hover .portfolio-item-hover {
  opacity: 1;
}

.portfolio-item-title {
  color: white;
  font-weight: 900;
  font-size: 32px;
  line-height: 78px;
}

.portfolio-item-text {
  color: white;
  font-weight: 300;
  font-size: 16px;
  padding: 0px 36px;
  line-height: 130%;
  text-align: center;
}

.service-item {
  width: 350px;
  /* height: 550px; */
  border-radius: 40px;
  /* border: 3px white solid; */
  /* margin-bottom: 200px; */
}

.service-item-text-container {
  background-color: white;
  border-radius: 40px;
  height: 350px;
  padding: 42px;
}

.servicve-item-text {
  font-size: 20px;
  font-weight: 500;
}

.button-call {
  width: 466px;
  height: 120px;
  border-radius: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  align-self: center;
}

.button-call a {
  font-size: 28px;
  font-weight: 400;
  text-align: center;
}

.outline-dashed-custom {
  outline-style: dashed;
  outline-offset: -0.5px;
}

.nav-selected {
  position: relative;
  font-weight: bold;
}