/********** Header section ************/

.logo {
  height: 2.8rem;
  margin: 3.6rem 0;
}

/********** Hero section ************/

.hero-section {
  position: relative;
  z-index: 1;
  /* background: #fff; */
  /* height: 100vh; */
  /* min-height: 106rem; */
}

.hero {
  display: grid;
  grid-template-columns: 1fr;
}

.hero-txt-box {
  padding: 0 2.8rem;
  text-align: center;
}

.hero-opening-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex-shrink: 0;

  width: 28rem;
  margin: 0 auto;

  padding-bottom: 4rem;

  text-align: center;
  font-size: 3.2rem;
  font-style: normal;
  font-weight: 600;
  line-height: 4rem; /* 125% */
  color: #000;

  /* background: radial-gradient(
    70.71% 70.71% at 50% 50%,
    rgba(235, 228, 225, 0.6) 0%,
    rgba(0, 0, 0, 0) 100%
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; */
}

.hero-body-text-top {
  padding-bottom: 2.4rem;
}

.hero-body-text-below {
  width: 28rem;
  margin: 0 auto;
}

.hero-btn-container {
  padding-top: 5.2rem;
  padding-bottom: 4.4rem;
}

.btn,
.btn-bg {
  padding: 1.2rem 2.4rem;
  position: relative;
  color: #fff;
  text-align: center;
  font-size: 1.2rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-decoration: none;
  /* background-color: rgba(29, 29, 29, 0.4); */
}

.submit-btn {
  position: relative;
}

.btn-filter {
  position: relative;
  background-color: #000;
}

.btn::before,
.btn-bg::before,
.submit-btn::before,
.btn-filter::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 32px;
  padding: 1px;
  background: linear-gradient(
    130deg,
    #0feffd 3.48%,
    #52ff00 68.31%,
    rgba(15, 239, 253, 0) 86.48%
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

.btn-service {
  margin-right: 2rem;
}

.hero-img-box {
  width: 100vw;
}

.hero-img {
  width: 100%;
}

/********** Services section ************/

.service-section {
  padding: 5.6rem 2.8rem;
}

.service-header {
  padding-bottom: 2.8rem;
  width: 32rem;
  margin: 0 auto;
}

.services-container {
  display: flex;
  flex-direction: column;
  gap: 3.2rem;
  flex: none;
  flex-wrap: nowrap;
  height: min-content;
  justify-content: flex-start;
  overflow: visible;
  padding: 0;
  position: relative;
  width: 100%;
}

.service-outside-layer {
  border: 1px solid #dedede;
  align-items: flex-start;
  background-color: #f1f1f1;
  border-radius: 1.6rem;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 1rem;
  height: min-content;
  justify-content: flex-start;
  overflow: hidden;
  padding: 0 0 4rem;
  position: relative;
  /*transform: perspective(120rem);*/
}

.service-inside-layer {
  align-items: center;
  background-color: #fff;
  border-radius: 1.6rem;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  gap: 3.2rem;
  height: min-content;
  justify-content: flex-start;
  overflow: hidden;
  padding: 1.6rem 1.6rem 4rem;
  position: relative;
  transform: perspective(120rem);
  /*will-change: var(--framer-will-change-override, transform);*/
}

.img-container {
  width: 100%;
  height: 23.6rem;
}

.service-img {
  width: 100%;
  border-radius: 1.2rem;
  height: 100%;
  object-fit: cover;
}

.service-text-container {
  align-items: flex-start;
  display: flex;
  flex: none;
  flex-direction: column;
  flex-wrap: nowrap;
  gap: 2rem;
  height: min-content;
  justify-content: flex-start;
  overflow: visible;
  padding: 0;
  position: relative;
  width: 100%;
  /* min-width: 33.6rem; */
}

.service-detail {
  color: #606060;
  line-height: 2rem; /* 150% */
  text-align: left;
  font-weight: 300;
  font-size: 1.4rem;
}

.row-2 {
  display: flex;
  flex-direction: column;
  gap: 3.2rem;
}

/********** Contact section ************/

.contact-section {
  padding: 0 2.8rem 9.6rem 2.8rem;
}

.contact-head {
  padding-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.contact-head-text {
  color: #606060;

  width: 20rem;
  margin: 0 auto;
}

form {
  width: 100%;
  padding: 20px;
}

label {
  display: block;
  margin-bottom: 8px;
  font-size: 1.2rem;
  font-style: normal;
  font-weight: 500;

  color: #8d8d8d;
}

input,
textarea {
  width: 100%;
  padding: 8px;
  margin-bottom: 16px;
  box-sizing: border-box;
  border: none;
  border-bottom: 1px solid #ccc; /* Add a border only at the bottom */
  outline: none; /* Remove default input focus outline */
}

button[type="button"] {
  padding-top: 1.6rem;
  padding-bottom: 1.6rem;
  /* margin-top: 3.2rem; */
  width: 16.8rem;
  border-radius: 999px;
  /* border-color: #fff; */
  background: #000;
  box-shadow: 0px 0px 14px 0px rgba(0, 0, 0, 0.12);
  color: #fff;
  cursor: pointer;

  font-size: 1.6rem;
  font-style: normal;
  font-weight: 500;
}

button:hover {
  border-color: #00a453;
  background: #00a453;
  color: #fff;
}

/* Optional: Style the input/textarea on focus */
input:focus,
textarea:focus {
  border-bottom: 2px solid #4caf50;
}

.contact-info-container {
  display: none;
  opacity: 0;
  visibility: hidden;
}

/********** Footer ************/

footer {
  padding: 5.6rem 3.6rem 8rem 3.6rem;
  background: #fff;
}

.footer-top {
  padding-bottom: 8rem;
}

.footer-top-desktop {
  display: none;
  opacity: 0;
  visibility: hidden;
}

.info-header,
.info-text {
  text-align: left;
}

.info-header {
  color: #fff;
  font-size: 2.8rem;
  font-style: normal;
  font-weight: 600;
  line-height: normal;

  padding-bottom: 2rem;
}

.info-text {
  font-weight: 300;
}

.info-head-container {
  padding-bottom: 5.6rem;
}

.info-container {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.info {
  display: flex;
  align-items: flex-start;
  gap: 2.8rem;
}

.info-detail {
  text-align: left;
  color: #fff;
  font-weight: 300;

  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-tel,
.contact-email {
  text-decoration: none;
  color: #fff;
  border-bottom: 1px solid #fff;
}
.contact-tel:hover,
.contact-email:hover {
  border-bottom: 1px solid transparent;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  align-items: flex-start;
  justify-content: center;
}

.logo-footer {
  height: 4.4rem;
  width: auto;
}

.copyright {
  color: #000;
  opacity: 0.5;
  font-size: 1.4rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.filter-bg {
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  background-color: rgba(255, 255, 255, 0.45);
  border-radius: 12px;
  border: 1px solid rgba(209, 213, 219, 0.3);
}

#confirm-filter {
  width: 100%;
  margin-top: 1.2rem;
  background: #fff;
  color: #000;
  font-size: 1.6rem;
  padding: 18px 10px;
  border-radius: 0.8rem;
}

#filter-btn:hover,
#filter-btn:active {
  border-width: 1px;
  background: transparent;
  /* border: #e5e7eb; */
  border-style: solid;
  border-color: #e5e7eb;
  background-color: #00a453;
}

/* #demo-form {
  color: #b5b5b5;
}
#demo-form:hover {
  color: #fff;
} */

.input {
  -webkit-appearance: none;
  /* remove default */
  display: block;
  margin: 10px;
  width: 24px;
  height: 24px;
  border-radius: 12px;
  border-color: #b2b2b2;
  border: 1px solid;
  cursor: pointer;
  vertical-align: middle;
  box-shadow: hsla(0, 0%, 100%, 0.15) 0 1px 1px,
    inset hsla(0, 0%, 0%, 0.5) 0 0 0 1px;
  background-color: hsla(0, 0%, 100%, 0.2);
  background-image: -webkit-radial-gradient(
    hsla(200, 100%, 90%, 1) 0%,
    #b2b2b2 15%,
    #5f5f5f 28%,
    hsla(200, 100%, 30%, 0) 70%
  );
  background-repeat: no-repeat;
  -webkit-transition: background-position 0.15s cubic-bezier(0.8, 0, 1, 1),
    -webkit-transform 0.25s cubic-bezier(0.8, 0, 1, 1);
  outline: none;
}

.input:checked {
  -webkit-transition: background-position 0.2s 0.15s cubic-bezier(0, 0, 0.2, 1),
    -webkit-transform 0.25s cubic-bezier(0, 0, 0.2, 1);
}

.input:active {
  -webkit-transform: scale(1.5);
  -webkit-transition: -webkit-transform 0.1s cubic-bezier(0, 0, 0.2, 1);
}

/* The up/down direction logic */

.input,
.input:active {
  background-position: 0 24px;
}

.input:checked {
  background-position: 0 0;
}

.input:checked ~ .input,
.input:checked ~ .input:active {
  background-position: 0 -24px;
}

.opacity-100 {
  opacity: 1;
}
