

main,
section {
  overflow: hidden;
}

a,
button {
  cursor: pointer;
  user-select: none;
  white-space: nowrap;
  border: none;
  outline: none;
  color: inherit;
  background: unset;
}

h1,
h2,
h3,
h4,
h5 {
  line-height: 1.25;
  text-wrap: balance;
  word-wrap: break-word;
  font-family: var(--primary-font);
}

p,
li {
  font-family: var(--text-font);
  line-height: 1.5;
  text-wrap: pretty;
  word-wrap: break-word;
}

img,
svg,
picture {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  object-fit: cover;
  background-size: cover;
  background-repeat: no-repeat;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: -moz-crisp-edges;
  image-rendering: crisp-edges;
}

.section {
  padding-block: 2rem 3rem;
}

.banner-section {
  background-color: var(--white-color);
  border-radius: 0 0 20px 20px;
}

.container {
  max-width: 75rem;
  height: auto;
  margin-inline: auto;
  padding-inline: 1.5rem;
}

.center {
  text-align: center;
  vertical-align: middle;
}

.truncate {
  display: -webkit-box;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.title-small {
  font-family: inherit;
  font-size: clamp(1.75rem, 4vw, 2.35rem);

  font-weight: 700;
  line-height: 1.25;
}
.title-medium {
  font-family: inherit;
  font-size: clamp(2.15rem, 5vw, 3.15rem);
  font-weight: 700;
  line-height: 1.15;
}
/* Main title: scales from small to extra-large screens */
.title-large {
  font-family: var(--primary-font);
  color: var(--secondary-color);
  font-size: clamp(2.5rem, 6vw, 4rem); /* scales with viewport */
  font-weight: 800;
  line-height: 1.15;
  text-transform: uppercase;
}

/* Inner title: intentionally larger than the main title */
.title-inside {
  font-size: clamp(3rem, 8vw, 5.5rem); /* larger min and max to always be bigger */
  display: inline-block;
  line-height: 1.1; /* optional for tighter spacing */
}



.text-small {
  font-family: inherit;
  font-size: 0.85rem;
  line-height: 1.5;
}
.text-base {
  font-family: var(--text-font);
  font-size: 1rem;
  line-height: 1.5;
}
.text-medium {
  font-family: inherit;
  font-size: 1.15rem;
  line-height: 1.5;
}
.text-large {
  font-family: inherit;
  font-size: 1.3rem;
  line-height: 1.5;
}
.text-upper {
  text-transform: uppercase;
}
.text-lower {
  text-transform: lowercase;
}
.text-capital {
  text-transform: capitalize;
}

.font-light {
  font-weight: 300;
}
.font-normal {
  font-weight: 400;
}
.font-medium {
  font-weight: 500;
}
.font-semi {
  font-weight: 600;
}
.font-bold {
  font-weight: 700;
}

.btn {
  display: inline-flex;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
  align-items: center;
  white-space: nowrap;
  text-align: center;
  justify-content: center;
  vertical-align: middle;
  column-gap: 0.35rem;
  padding-block: 0.5rem;
  padding-inline: 1.25rem;
  border-radius: 3rem;
  transition: all 0.25s ease;
}
.btn-primary {
  color: var(--color-gray-100);
  background-color: var(--color-blue-300);
  box-shadow: var(--shadow-medium);
}
.btn-neutral {
  color: var(--color-dark-300);
  background-color: var(--color-gray-100);
  box-shadow: var(--shadow-medium);
}
.btn-darken {
  color: var(--color-gray-100);
  background-color: var(--color-dark-100);
  box-shadow: var(--shadow-medium);
}



.banner-column {
  position: relative;
  display: grid;
  align-items: center;
  row-gap: 3rem;
  column-gap: 2rem;
}
@media screen and (min-width: 48rem) {
  .banner-column {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    justify-content: center;
    margin-top: 4rem;
  }
}
@media screen and (min-width: 64rem) {
  .banner-column {
    grid-template-columns: 1fr max-content;
    column-gap: 4rem;
  }
}
.banner-image {
  display: block;
  max-width: 16rem;
  height: auto;
  object-fit: cover;
  justify-self: center;
}
@media screen and (min-width: 48rem) {
  .banner-image {
    max-width: 20rem;
    order: 1;
  }
}
@media screen and (min-width: 64rem) {
  .banner-image {
    max-width: 24rem;
    margin-right: 5rem;
  }
}
.banner-inner {
  display: flex;
  flex-direction: column;
  align-items: baseline;
  row-gap: 1.5rem;
}
.banner-link {
  position: absolute;
  display: grid;
  top: 30%;
  right: 1.5rem;
  justify-items: center;
  row-gap: 0.5rem;
  visibility: hidden;
}
@media screen and (min-width: 64rem) {
  .banner-link {
    visibility: visible;
  }
}
.banner-link > * {
  font-size: 1.25rem;
  line-height: inherit;
  color: var(--color-gray-100);
}
.banner-link::before, .banner-link::after {
  content: "";
  position: absolute;
  width: 4rem;
  height: 1.5px;
  transform: rotate(90deg);
  background: var(--color-gray-100);
}
.banner-link::before {
  top: -3rem;
}
.banner-link::after {
  bottom: -3rem;
}

/* MAIN TITLE */

.about img {
  max-width: 100%;
  display: block;
}

.about ul {
  list-style-type: none;
}
.about ul i {
  color: #fff;
  font-size: clamp(0.9rem, 0.825rem + 0.3vw, 1.2rem);
}
.about ul i:hover {
  color: #f2709c;
}

.about  {
  font-weight: 300;
  font-style: normal;
  padding-block: min(20vh, 6rem);
  text-align: center;
  width: calc(min(90rem, 90%));
  margin-inline: auto;
}
.about  span,
.about  p,
.about  h2,
.about  h3 {
  letter-spacing: 0.035rem;
}
.about  p {
  line-height: 1.6;
  color: var(--dark-primary-color);
  max-width: 50rem;
  margin: 0 auto;
  font-size: clamp(0.9rem, 0.825rem + 0.3vw, 1.2rem);
}
.about  .bg-watermark {
    color: rgba(158, 153, 153, 0.623);
    opacity: 50%;
    font-size: clamp(6rem, 1.3333rem + 14.9333vw, 20rem);
    font-weight: 800;
    position: absolute;
    z-index: -1;
    left: 50%;
    transform: translatex(-50%) translatey(-30%);
    user-select: none;
    letter-spacing: 0.5rem;
}
.about span {
  text-transform: uppercase;
  display: block;
  font-size: 0.9rem; /* default extra small (mobile) */
  font-weight: 100;
  color: var(--primary-color);
}

/* Small screens (sm: 576px and up) */
@media (min-width: 576px) {
  .about span {
    font-size: 1rem;
  }
}

/* Medium screens (md: 768px and up) */
@media (min-width: 768px) {
  .about span {
    font-size: 1.1rem;
  }
}

/* Large screens (lg: 992px and up) */
@media (min-width: 992px) {
  .about span {
    font-size: 1.2rem;
  }
}

/* Extra Large screens (xl: 1200px and up) */
@media (min-width: 1200px) {
  .about span {
    font-size: 1.3rem;
  }
}

/* XXL / Extra Extra Large screens (xxl: 1400px and up) */
@media (min-width: 1400px) {
  .about span {
    font-size: 1.4rem;
  }
}

.about h2 {
  font-size: 3rem; /* default mobile (extra small) */
  margin-top: -0.625rem;
  color: var(--primary-color);
  font-weight: 900;
}

/* Small screens (sm: 576px and up) */
@media (min-width: 576px) {
  .about h2 {
    font-size: 4rem;
  }
}

/* Medium screens (md: 768px and up) */
@media (min-width: 768px) {
  .about h2 {
    font-size: 5rem;
  }
}

/* Large screens (lg: 992px and up) */
@media (min-width: 992px) {
  .about h2 {
    font-size: 7rem;
  }
}

/* Extra Large screens (xl: 1200px and up) */
@media (min-width: 1200px) {
  .about h2 {
    font-size: 9rem;
  }
}

/* XXL / Extra Extra Large screens (xxl: 1400px and up) */
@media (min-width: 1400px) {
  .about h2 {
    font-size: 10rem;
  }
}

.about  .cards {
  margin-top: 7rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(12rem, 100%), 1fr));
  gap: 2rem;
}
@media screen and (min-width: 51rem) {
  .about  .cards {
    gap: 0;
    padding-bottom: 2.5rem;
  }
}
.about  .cards .card {
  position: relative;
  cursor: pointer;
}
.about .cards .card h3,
.about .cards .card p {
  text-transform: capitalize;
}
section .cards .card h3 {
  font-size: clamp(1rem, 0.9167rem + 0.2667vw, 1.25rem);
  font-weight: 400;
  color: #f6f6f6;
}
.about .cards .card p {
  font-size: clamp(0.85rem, 0.75rem + 0.32vw, 1.15rem);
  letter-spacing: 0.12rem;
  font-weight: 300;
  max-width: 100%;
}
.about .cards .card::before {
  position: absolute;
  content: "";
  width: 5rem;
  height: 6.25rem;
  z-index: 0;
  transition: 0.3s ease-in-out;
  background: #f2709c;
  background: -webkit-linear-gradient(to left, #ff9472, #f2709c);
  background: linear-gradient(to left, #ff9472, #f2709c);
  top: -0.375rem;
  left: -0.375rem;
}
.about .cards .card::after {
  position: absolute;
  inset: 0;
  content: "";
  width: 100%;
  height: 100%;
  background: #232526;
  background: -webkit-linear-gradient(to bottom, rgba(65, 67, 69, 0.2), rgba(8, 8, 8, 0.9));
  background: linear-gradient(to bottom, rgba(65, 67, 69, 0.2), rgba(8, 8, 8, 0.9));
}
.about .cards .card img {
  filter: grayscale(100%);
  transition: 0.5s ease;
}
.about .cards .card-content {
  position: absolute;
  bottom: 0;
  z-index: 99;
  left: 0;
  color: #fff;
  width: 100%;
  padding: 1.875rem 1.25rem;
  text-align: center;
}
.about .cards .card-content ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  margin-top: 1.25rem;
}
.about .cards .card:hover img {
  filter: grayscale(0%);
}
.about .cards .card:hover::before {
  transform: scale(1.03);
}
.about .cards .card:nth-child(1)::before {
  top: -0.375rem;
  left: -0.375rem;
}
@media screen and (min-width: 31.25rem) {
  .about .cards .card:nth-child(2) {
    transform: translatey(15%);
  }
}
.about .cards .card:nth-child(2)::before {
  bottom: -0.375rem;
  left: -0.375rem;
  top: auto;
}
.about .cards .card:nth-child(3)::before {
  top: -0.375rem;
  left: -0.375rem;
}

/* ABOUT - MAIN CONTENT  */

a, a:hover {
  text-decoration: none;
}

.icon {
  display: inline-block;
  width: 1em;
  height: 1em;
  stroke-width: 0;
  stroke: currentColor;
  fill: currentColor;
}

.wrapper {
  width: 100%;
  width: 100%;
  height: auto;
  min-height: 100vh;
  padding: 50px 20px;
  padding-top: 100px;
  display: flex;
  margin-top: -20px;
}
@media screen and (max-width: 768px) {
  .wrapper {
    height: auto;
    min-height: 100vh;
    padding-top: 100px;
  }
}

.profile-card {
  width: 100%;
  min-height: 460px;
  margin: auto;
  box-shadow: 0px 8px 60px -10px rgba(13, 28, 39, 0.6);
  background: #fff;
  border-radius: 12px;
  max-width: 1200px;
  position: relative;
}
.profile-card.active .profile-card__cnt {
  filter: blur(6px);
}
.profile-card.active .profile-card-message,
.profile-card.active .profile-card__overlay {
  opacity: 1;
  pointer-events: auto;
  transition-delay: 0.1s;
}
.profile-card.active .profile-card-form {
  transform: none;
  transition-delay: 0.1s;
}
.profile-card__img {
  width: 250px;
  height: 250px;
  margin-left: auto;
  margin-right: auto;
  transform: translateY(-30%);
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  z-index: 4;
  box-shadow: 0px 5px 50px 0px var(--tertiary-color), 0px 0px 0px 7px var(--tertiary-color);
}
@media screen and (max-width: 576px) {
  .profile-card__img {
    width: 120px;
    height: 120px;
  }
}
.profile-card__img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
.profile-card__cnt {
  margin-top: 10px;
  text-align: center;
  padding: 0 20px;
  padding-bottom: 40px;
  transition: all 0.3s;
}
.profile-card__name {
  font-weight: 900;
  font-size: 32px; /* mobile */
  text-transform: uppercase;
  color: var(--tertiary-color);
  margin-bottom: 15px;
  font-family: var(--primary-font);

  /* --- TEXT DESIGN --- */
  -webkit-text-stroke: 2px var(--primary-color); /* outline */
  text-shadow:
    0 0 10px rgba(0,0,0,0.2),
    0 0 20px rgba(0,0,0,0.2); /* soft glow */
}


/* Small screens (phones landscape) */
@media (min-width: 576px) {
  .profile-card__name {
    font-size: 40px;
  }
}

/* Medium screens (tablets) */
@media (min-width: 768px) {
  .profile-card__name {
    font-size: 55px;
  }
}

/* Large screens (small laptops) */
@media (min-width: 992px) {
  .profile-card__name {
    font-size: 70px;
  }
}

/* Extra Large screens (desktops) */
@media (min-width: 1200px) {
  .profile-card__name {
    font-size: 80px;
  }
}

/* Extra Extra Large screens (big monitors) */
@media (min-width: 1400px) {
  .profile-card__name {
    font-size: 80px;
  }
}


.profile-card__txt {
  font-size: 18px;
  font-weight: 500;
  color: #324e63;
  margin-bottom: 15px;
  font-family: var(--text-font);
}
.profile-card__txt strong {
  font-weight: 700;
}
.profile-card-loc {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  font-weight: 600;
  color: var(--dark-secondary-color);
  font-family: var(--secondary-font);
}
.profile-card-loc__icon {
  display: inline-flex;
  font-size: 27px;
  margin-right: 10px;
}
.profile-card-inf {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  align-items: flex-start;
  margin-top: 35px;
}
.profile-card-inf__item {
  padding: 10px 35px;
  min-width: 150px;
}
@media screen and (max-width: 768px) {
  .profile-card-inf__item {
    padding: 10px 20px;
    min-width: 120px;
  }
}
.profile-card-inf__title {
  font-weight: 700;
  font-size: 27px;
  color: #324e63;
  font-family: var(--primary-font);
}
.profile-card-inf__txt {
  font-weight: 500;
  margin-top: 7px;
  font-family: var(--text-font);
}

.profile-card-ctr {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 40px;
}
@media screen and (max-width: 576px) {
  .profile-card-ctr {
    flex-wrap: wrap;
  }
}
.profile-card__button {
  background: none;
  border: none;
  font-family: "Quicksand", sans-serif;
  font-weight: 700;
  font-size: 19px;
  margin: 15px 35px;
  padding: 15px 40px;
  min-width: 201px;
  border-radius: 50px;
  min-height: 55px;
  color: #fff;
  cursor: pointer;
  backface-visibility: hidden;
  transition: all 0.3s;
}
@media screen and (max-width: 768px) {
  .profile-card__button {
    min-width: 170px;
    margin: 15px 25px;
  }
}
@media screen and (max-width: 576px) {
  .profile-card__button {
    min-width: inherit;
    margin: 0;
    margin-bottom: 16px;
    width: 100%;
    max-width: 300px;
  }
  .profile-card__button:last-child {
    margin-bottom: 0;
  }
}
.profile-card__button:focus {
  outline: none !important;
}
@media screen and (min-width: 768px) {
  .profile-card__button:hover {
    transform: translateY(-5px);
  }
}
.profile-card__button:first-child {
  margin-left: 0;
}
.profile-card__button:last-child {
  margin-right: 0;
}
.profile-card__button.button--blue {
  background: linear-gradient(45deg, #1da1f2, #0e71c8);
  box-shadow: 0px 4px 30px rgba(19, 127, 212, 0.4);
}
.profile-card__button.button--blue:hover {
  box-shadow: 0px 7px 30px rgba(19, 127, 212, 0.75);
}
.profile-card__button.button--orange {
  background: linear-gradient(45deg, #d5135a, #f05924);
  box-shadow: 0px 4px 30px rgba(223, 45, 70, 0.35);
}
.profile-card__button.button--orange:hover {
  box-shadow: 0px 7px 30px rgba(223, 45, 70, 0.75);
}
.profile-card__button.button--gray {
  box-shadow: none;
  background: #dcdcdc;
  color: #142029;
}
.profile-card-message {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  padding-top: 130px;
  padding-bottom: 100px;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s;
}
.profile-card-form {
  box-shadow: 0 4px 30px rgba(15, 22, 56, 0.35);
  max-width: 80%;
  margin-left: auto;
  margin-right: auto;
  height: 100%;
  background: #fff;
  border-radius: 10px;
  padding: 35px;
  transform: scale(0.8);
  position: relative;
  z-index: 3;
  transition: all 0.3s;
}
@media screen and (max-width: 768px) {
  .profile-card-form {
    max-width: 90%;
    height: auto;
  }
}
@media screen and (max-width: 576px) {
  .profile-card-form {
    padding: 20px;
  }
}
.profile-card-form__bottom {
  justify-content: space-between;
  display: flex;
}
@media screen and (max-width: 576px) {
  .profile-card-form__bottom {
    flex-wrap: wrap;
  }
}
.profile-card textarea {
  width: 100%;
  resize: none;
  height: 210px;
  margin-bottom: 20px;
  border: 2px solid #dcdcdc;
  border-radius: 10px;
  padding: 15px 20px;
  color: #324e63;
  font-weight: 500;
  font-family: "Quicksand", sans-serif;
  outline: none;
  transition: all 0.3s;
}
.profile-card textarea:focus {
  outline: none;
  border-color: #8a979e;
}
.profile-card__overlay {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  opacity: 0;
  background: rgba(22, 33, 72, 0.35);
  border-radius: 12px;
  transition: all 0.3s;
}

/* about cards */

.about-cards {
   padding: 1em 0;
}
.about-cards .container {
   max-width: 1200px;
   width: 100%;
   margin: 0 auto;
}

.about-cards .inner__sub {
   --fs-h5: 1.5rem;
   font-size: var(--fs-h5);
   color: var(--clr-head);
   margin-bottom: 1em;
}

.about-cards .inner__head {
   --fs-h2: 3rem;
   font-size: var(--fs-h2);
   font-family: var(--ff-head);
   color: var(--clr-head);
   line-height: 1.4;
   margin-bottom: 1em;
}

.about-cards .inner__content {
   margin-bottom: 3em;
}

.about-cards .inner__clr {
   color: hsla(216, 97%, 61%, 1);
}

.about-cards .inner__text {
   text-align: left;
}

/*====== cards style ==========*/

.about-cards .cards-grid {
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
   grid-gap: 3em 1rem;
}

.about-cards .card {
   border-radius: 6px;
   box-shadow: 0 20px 40px 0 rgba(173, 181, 189, 0.1);
   border: solid 1px rgba(129, 147, 174, 0.12);
   background-color: #fff;
   padding: 1.3em;
   text-align: center;
   position: relative;
   margin-top: 2rem;
}


.about-cards .card:first-child::before {
   content: "";
   position: absolute;
   background-color: var(--secondary-color);
   top: -8px;
   left: -1px;
   width: calc(100% + 3px);
   height: 8px;
   border-radius: 6px 6px 0 0;
}

.about-cards .card:nth-child(2)::before {
   content: "";
   position: absolute;
   background-color: var(--secondary-color);
   top: -8px;
   left: -1px;
   width: calc(100% + 2px);
   height: 8px;
   border-radius: 6px 6px 0 0;
}
.about-cards .card:nth-child(3)::before {
   content: "";
   position: absolute;
   background-color: var(--secondary-color);
   top: -8px;
   left: -1px;
   width: calc(100% + 2px);
   height: 8px;
   border-radius: 6px 6px 0 0;
}

.about-cards .card:last-child::before {
   content: "";
   position: absolute;
   background-color: var(--secondary-color);
   top: -8px;
   left: -1px;
   width: calc(100% + 3px);
   height: 8px;
   border-radius: 6px 6px 0 0;
}

.about-cards .card__body {
   padding-top: 1em;
}

.about-cards .card__head {
   --fs-h4: 2rem;
   font-size: 20px;
   margin-bottom: 1em;
   color: var(--clr-head);
}

.about-cards .card__content {
   --fs-body: 1rem;
   font-size: 12px;
   font-family: var(--text-font);
}

@media (min-width: 750px) {
   .about-cards .inner {
      padding: 1em 0;
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      width: 100%;
   }

   .about-cards .inner__sub {
      --fs-h5: 1.8rem;
      font-size: var(--fs-h5);
   }
   .about-cards .inner__headings {
      flex: 1 0 30%;
   }
   .about-cards .inner__content {
      flex: 1 0 50%;
      align-self: center;
      margin-left: 2rem;
   }
   .about-cards .inner__sub {
      margin-bottom: 0;
   }
   .about-cards .inner__head {
      --fs-h2: 4rem;
   }
}

/* SERVICES */

/**************************/
/* Summary - Typography
/**************************/
.text h2 {
  font-family: var(--primary-font); 
  font-size: 40px; 
  text-align: center; 
  color: white; 
  font-weight: 600; 
  z-index: 10; 
  position: relative;
}

.text h4 {
font-family: var(--secondary-font); 
font-size: 25px; 
text-align: center; 
color: white; 
font-weight: 300; 
z-index: 10; 
position: relative;
}

/**************************/
/* Summary - Parallax
/**************************/


#summary .parallax-one {
    margin-top: 3rem;
    padding-top: 150px; 
    padding-left: 50px; 
    padding-right: 50px; 
    padding-bottom: 150px; 
    overflow: hidden; 
    position: relative; 
    width: 100%; 
    background-image: url(https://firebasestorage.googleapis.com/v0/b/miolms.firebasestorage.app/o/JORELL%20ANDREI%20P.%20FINEZ%2FLOGO%2Fpexels-tranmautritam-326503.jpg?alt=media&token=e8f047ed-876c-451d-8088-fc299440e63c); background-attachment: fixed; 
    background-size: cover; 
    -moz-background-size: cover; 
    -webkit-background-size: cover; 
    background-repeat: no-repeat; 
    background-position: top center;
    border-radius: 20px;
}

#summary .parallax-two {
padding-top: 150px; 
padding-left: 50px; 
padding-right: 50px; 
padding-bottom: 150px; 
overflow: hidden; 
position: relative; 
width: 100%; 
background-image: url(https://firebasestorage.googleapis.com/v0/b/miolms.firebasestorage.app/o/JORELL%20ANDREI%20P.%20FINEZ%2FLOGO%2Fpexels-divinetechygirl-1181244.jpg?alt=media&token=6569aa8b-54a0-480f-b0ad-4ddb0b424800); background-attachment: fixed; 
background-size: cover; 
-moz-background-size: cover; 
-webkit-background-size: cover; 
background-repeat: no-repeat; 
background-position: center center;
border-radius: 20px;
}

#summary .parallax-three {
padding-top: 150px; 
padding-left: 50px; 
padding-right: 50px; 
padding-bottom: 150px; 
overflow: hidden; 
position: relative; 
width: 100%; 
background-image: url(https://firebasestorage.googleapis.com/v0/b/miolms.firebasestorage.app/o/JORELL%20ANDREI%20P.%20FINEZ%2FLOGO%2Fpexels-startup-stock-photos-7376.jpg?alt=media&token=2a4d4842-fa94-4d08-b59b-36a8a7fa702a); 
background-attachment: fixed; 
background-size: cover; 
-moz-background-size: cover; 
-webkit-background-size: cover; 
background-repeat: no-repeat; 
background-position: center center;
border-radius: 20px;
}

/**************************/
/* Summary - Darken Images
/**************************/
.darken-image {
  position: relative;
}

.darken-image:after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: block;
  background-color: rgba(0, 0, 0, 0.55);
}


/* PROJECTS */



.bubble {
  -webkit-backdrop-filter: blur(30px);
  backdrop-filter: blur(30px);
  border-color: rgba(255, 255, 255, 0.12) !important;
  background: rgba(255, 255, 255, 0.05) !important;
  color: #ffffff;
}

.date {
  position: absolute;
  top: 15px;
  left: 15px;
  padding: 4px 10px;
}

.project-body .cover-image {
  width: 100%;          /* Make it full width of container */
  height: 200px;        /* Fixed height for all images */
  object-fit: cover;    /* Crop/scale image to fill the container */
  border-radius: 6px;   /* Optional: rounded corners */
  display: block;       /* Remove inline spacing */
}

.project-body a {
  color: #328195;
  text-decoration: none;
}

.project-body .input-icon {
  position: relative;
}

.project-body .input-icon input {
  border: none;
  border-bottom: 1px solid #ced4da;
  padding-left: 30px;
}
.project-body .input-icon i {
  position: absolute;
  left: 20px;
  top: 25px;
  opacity: 0.5;
}

.project-body .categories a.badge {
  color: #328195;
  border-color: #328195;
}
.project-body .categories a.badge.active {
  background: #328195;
  color: #ffffff;
}

.project-body .card {
  transition: all 0.2s;
}
.project-body .card:hover {
  background: #ffffff !important;
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
}
.project-body .card:hover h2 a {
  transition: all 0.2s;
  color: #328195 !important;
}
.project-body .card:hover img {
  border-bottom-right-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
}
.project-body .card:hover .has-multiple button {
  display: block;
}
.project-body .card:hover .has-multiple-icon {
  opacity: 0.2;
}
.project-body .card .has-multiple-icon {
  position: absolute;
  top: 160px;
  right: 15px;
  color: #ffffff;
}

.project-body .has-multiple {
  position: relative;
  min-height: 200px;
  max-height: 200px;
  overflow: hidden;
  width: 100%;
}
.project-body .has-multiple img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.project-body .has-multiple button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  background-color: transparent;
  border: none;
  cursor: pointer;
  color: #fff;
  display: none;
}
.project-body .has-multiple button:hover {
  color: #9cd0de;
}
.project-body .has-multiple button.prev {
  left: 10px;
}
.project-body .has-multiple button.next {
  right: 10px;
}

.text-muted {
  margin-bottom: 1rem; /* Adjust the space as needed */
}


/* CONTACTS */

    .contact-address-area {
      background-color: transparent;
      background: none;
    }

    .contact-address-area .container {
      background-color: transparent;
      background: none;
    }

      .contact-address-area h1,
       .contact-address-area  h2,
       .contact-address-area  h3,
       .contact-address-area  h4,
       .contact-address-area  h5,
       .contact-address-area  h6 {}
       .contact-address-area  a,
       .contact-address-area  a:hover,
       .contact-address-area  a:focus,
       .contact-address-area  a:active {
            text-decoration: none;
            outline: none;
        }
        
       .contact-address-area  a,
       .contact-address-area  a:active,
       .contact-address-area  a:focus {
            color: #333;
            text-decoration: none;
            transition-timing-function: ease-in-out;
            -ms-transition-timing-function: ease-in-out;
            -moz-transition-timing-function: ease-in-out;
            -webkit-transition-timing-function: ease-in-out;
            -o-transition-timing-function: ease-in-out;
            transition-duration: .2s;
            -ms-transition-duration: .2s;
            -moz-transition-duration: .2s;
            -webkit-transition-duration: .2s;
            -o-transition-duration: .2s;
        }
        
        .contact-address-area ul {
            margin: 0;
            padding: 0;
            list-style: none;
        }
        .contact-address-area img {
          max-width: 100%;
          height: auto;
      }


.sec-title-style1 {
    position: relative;
    display: block;
    margin-top: -9px;
    padding-bottom: 50px;
}
.sec-title-style1.max-width{
    position: relative;
    display: block;
    max-width: 770px;
    margin: -9px auto 0;
    padding-bottom: 52px;    
}
.sec-title-style1.pabottom50 {
    padding-bottom: 42px;
}
.sec-title-style1 .title {
    position: relative;
    display: block;
    color: #131313;
    font-size: 36px;
    line-height: 46px;
    font-weight: 700;
    text-transform: uppercase;
}
.sec-title-style1 .title.clr-white{
    color: #ffffff;
}
.sec-title-style1 .decor {
    position: relative;
    display: block;
    width: 70px;
    height: 5px;
    margin: 19px 0 0;
}
.sec-title-style1 .decor:before{
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 5px;
    height: 5px;
    background: var(--primary-color);
    border-radius: 50%;
    content: "";
}
.sec-title-style1 .decor:after{
    position: absolute;
    top: 0;
    right: 10px;
    bottom: 0;
    width: 5px;
    height: 5px;
    background: var(--primary-color);
    border-radius: 50%;
    content: "";
}
.sec-title-style1 .decor span {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 1px;
    background: var(--primary-color);
    margin: 2px 0;
}


.sec-title-style1 .text{
    position: relative;
    display: block;
    margin: 7px 0 0;
}
.sec-title-style1 .text p{
    position: relative;
    display: inline-block;
    padding: 0 15px;
    color: #131313;
    font-size: 14px;
    line-height: 16px;
    font-weight: 700;
    text-transform: uppercase;
    margin: 0;
}
.sec-title-style1 .text.clr-yellow p{
    color: var(--primary-color);
}
.sec-title-style1 .text .decor-left{
    position: relative;
    top: -2px;
    display: inline-block;
    width: 70px;
    height: 5px;
    background: transparent;
}
.sec-title-style1 .text .decor-left span {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 1px;
    background: var(--primary-color);
    content: "";
    margin: 2px 0;
}
.sec-title-style1 .text .decor-left:before{
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 5px;
    height: 5px;
    background: #FFA500;
    border-radius: 50%;
    content: "";
}
.sec-title-style1 .text .decor-left:after{
    position: absolute;
    top: 0;
    right: 10px;
    bottom: 0;
    width: 5px;
    height: 5px;
    background: #FFA500;
    border-radius: 50%;
    content: "";
}

.sec-title-style1 .text .decor-right{
    position: relative;
    top: -2px;
    display: inline-block;
    width: 70px;
    height: 5px;
    background: transparent;
}
.sec-title-style1 .text .decor-right span {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 50px;
    height: 1px;
    background: #FFA500;
    content: "";
    margin: 2px 0;
}
.sec-title-style1 .text .decor-right:before{
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 5px;
    height: 5px;
    background: #FFA500;
    border-radius: 50%;
    content: "";
}
.sec-title-style1 .text .decor-right:after{
    position: absolute;
    top: 0;
    left: 10px;
    bottom: 0;
    width: 5px;
    height: 5px;
    background: #FFA500;
    border-radius: 50%;
    content: "";
}

.sec-title-style1 .bottom-text{
    position: relative;
    display: block;
    padding-top: 16px;
}
.sec-title-style1 .bottom-text p{
    color: #848484;
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
    margin: 0;
}
.sec-title-style1 .bottom-text.clr-gray p{
    color: #cdcdcd;    
}
.contact-address-area{
    position: relative;
    display: block;
    background: #ffffff;
    padding: 100px 0 120px;
}
.contact-address-area .sec-title-style1.max-width {
    padding-bottom: 72px;
}
.contact-address-box{
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;    
}
.single-contact-address-box:first-child {
    position: relative;
    display: block;
    background: var(--primary-color);
    padding: 85px 30px 77px;
        border-radius: 20px 0 0 20px;

}
.single-contact-address-box:last-child {
    position: relative;
    display: block;
    background: var(--primary-color);
    padding: 85px 30px 77px;
    border-radius: 0 20px 20px 0;
}
.single-contact-address-box .icon-holder{
    position: relative;
    display: block;
    padding-bottom: 24px;
}
.single-contact-address-box .icon-holder span:before{
    font-size: 75px;
}
.single-contact-address-box h3{
    color: var(--white-color);
    margin: 0px 0 9px;
}
.single-contact-address-box h2{
    color: var(--dark-secondary-color);
    font-family: var(--secondary-font);
    font-size: 24px;
    font-weight: 600;
    margin: 0 0 19px;
}
.single-contact-address-box a{
    color: #ffffff;
}

.single-contact-address-box.main-branch {
    background: var(--secondary-color);
    padding: 33px 20px 51px;
    margin-top: -20px;
    margin-bottom: -20px;
    border-radius: 20px;
}
.single-contact-address-box.main-branch h3{
    color: var(--white-color);
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 38px;
    text-transform: uppercase;
    text-align: center;
}
.single-contact-address-box.main-branch .inner{
    position: relative;
    display: block;
    
}
.single-contact-address-box.main-branch .inner ul{
    position: relative;
    display: block;
    overflow: hidden;
}
.single-contact-address-box.main-branch .inner ul li{
    position: relative;
    display: block;
    padding-left: 110px;
    border-bottom: 1px solid #737373;
    padding-bottom: 23px;
    margin-bottom: 24px;
}
.single-contact-address-box.main-branch .inner ul li:last-child{
    border: none;
    margin-bottom: 0;
    padding-bottom: 0;
}
.single-contact-address-box.main-branch .inner ul li .title{
    position: absolute;
    top: 2px;
    left: 0;
    display: inline-block;
}
.single-contact-address-box.main-branch .inner ul li .title h4{
    color: var(--white-color);
    font-size: 18px;
    font-weight: 600;
    line-height: 24px;
    text-transform: capitalize;
    border-bottom: 2px solid var(--white-color);
}

.single-contact-address-box.main-branch .inner ul li .text{
    position: relative;
    display: block;
}
.single-contact-address-box.main-branch .inner ul li .text p{
    color: var(--white-color);
    font-size: 15px;
    line-height: 24px;
    font-weight: 600;
    margin: 0;
}

.contact-info-area {
    position: relative;
    display: block;
    background: #ffffff;
}
.contact-form {
    position: relative;
    display: block;
    background: #ffffff;
    padding: 100px 60px 80px;
    -webkit-box-shadow: 0px 3px 8px 2px #ededed; 
    box-shadow: 0px 3px 8px 2px #ededed;
    z-index: 3;
}
.contact-form .sec-title-style1{
    position: relative;
    display: block;
    padding-bottom: 51px;
    width: 50%;
}
.contact-form .text-box{
    position: relative;
    display: block;
    margin-top: 19px;
    width: 50%;    
}
.contact-form .text p{
    color: #848484;
    line-height: 26px;
    margin: 0;
}

.contact-form .inner-box{
    position: relative;
    display: block;
    background: #ffffff;
}
.contact-form form{
    position: relative;
    display: block;
}
.contact-form form .input-box{
    position: relative;
    display: block;
}

.contact-form form input[type="text"],
.contact-form form input[type="email"],
.contact-form form textarea{
    position: relative;
    display: block;   
    background: #ffffff;
    border: 1px solid #eeeeee;
    width: 100%;
    height: 55px;
    font-size: 16px;
    padding-left: 19px;
    padding-right: 15px;
    border-radius: 0px;
    margin-bottom: 20px;
    transition: all 500ms ease;
}
.contact-form form textarea {
    height: 130px;
    padding-left: 19px;
    padding-right: 15px;
    padding-top: 14px;
    padding-bottom: 15px;
}
.contact-form form input[type="text"]:focus{
    color: #222222;
    border-color: #d4d4d4; 
}
.contact-form form input[type="email"]:focus{
    color: #222222;
    border-color: #d4d4d4;
}
.contact-form form textarea:focus{
    color: #222222;
    border-color: #d4d4d4;
}
.contact-form form input[type="text"]::-webkit-input-placeholder {
    color: #848484;
}
.contact-form form input[type="text"]:-moz-placeholder {
    color: #848484;
}
.contact-form form input[type="text"]::-moz-placeholder {
    color: #848484;
}
.contact-form form input[type="text"]:-ms-input-placeholder {
    color: #848484;
}
.contact-form form input[type="email"]::-webkit-input-placeholder {
    color: #848484;
}
.contact-form form input[type="email"]:-moz-placeholder {
    color: #848484;
}
.contact-form form input[type="email"]::-moz-placeholder {
    color: #848484;
}
.contact-form form input[type="email"]:-ms-input-placeholder {
    color: #848484;
}
.contact-form form button {
    position: relative;
    display: block;
    width: 100%;
    background: #FFA500;
    border: 1px solid #FFA500;
    color: #131313;
    font-size: 16px;
    line-height: 55px;
    font-weight: 600;
    text-align: center;
    text-transform: capitalize;
    transition: all 200ms linear;
    transition-delay: 0.1s;
    cursor: pointer;
}

.contact-form form button:hover{
    color: #ffffff;
    background: #131313;
}

/* LOGO NODES */
#canvas {
    margin-top: -5rem;
    background-image: url('https://firebasestorage.googleapis.com/v0/b/miolms.firebasestorage.app/o/JORELL%20ANDREI%20P.%20FINEZ%2FLOGO%2Fbg-1.jpg?alt=media&token=9704bdf7-54ef-4e69-a1d6-6350bdc36651');
    
    /* Make background cover the entire element */
    background-size: cover;

    /* Center the image */
    background-position: center;

    /* Prevent repeating */
    background-repeat: no-repeat;

    /* Optional: set minimum height if needed */
    min-height: 90vh;
}

/* UPDATES */

