@font-face {
  font-family: "Poppins Regular";
  src: url("../../assets/fonts/Poppins/Poppins-Regular.ttf") format("truetype");
}
@font-face {
  font-family: "Poppins Medium";
  src: url("../../assets/fonts/Poppins/Poppins-Medium.ttf") format("truetype");
}
@font-face {
  font-family: "Poppins SemiBold";
  src: url("../../assets/fonts/Poppins/Poppins-SemiBold.ttf") format("truetype");
}
@font-face {
  font-family: "Poppins Bold";
  src: url("../../assets/fonts/Poppins/Poppins-Bold.ttf") format("truetype");
}
@font-face {
  font-family: "Playfair Display Regular";
  src: url("../../assets/fonts/Playfair_Display/static/PlayfairDisplay-Regular.ttf") format("truetype");
}
@font-face {
  font-family: "Playfair Display Medium";
  src: url("../../assets/fonts/Playfair_Display/static/PlayfairDisplay-Medium.ttf") format("truetype");
}
@font-face {
  font-family: "Playfair Display SemiBold";
  src: url("../../assets/fonts/Playfair_Display/static/PlayfairDisplay-SemiBold.ttf") format("truetype");
}
@font-face {
  font-family: "Playfair Display Bold";
  src: url("../../assets/fonts/Playfair_Display/static/PlayfairDisplay-Bold.ttf") format("truetype");
}
* {
  box-sizing: border-box;
}

body {
  font-family: "Poppins Regular", sans-serif;
  margin: 0;
  padding: 0;
  color: #464647;
}

body.no-scroll {
  overflow: hidden;
  height: 100vh;
}

a {
  font-family: "Poppins Regular", sans-serif;
}

h1, h2, h3, h4 {
  font-family: "Playfair Display Bold", serif;
}

h3 {
  text-align: center;
}

.logo__icon {
  height: 4.5rem;
  width: auto;
}

.menu-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 1002;
}

.menu-overlay.active {
  display: block;
}

.button {
  background-color: #3b95d6;
  border: none;
  padding: 0.8rem 1.2rem;
  color: #FFFFFF;
  font-weight: 500;
  border-radius: 4px;
  text-decoration: none;
  display: inline-block;
  font-size: 0.875rem;
  padding: 0.7rem 3rem;
  font-family: "Poppins Bold", sans-serif;
}

header {
  background: #ebf2f8;
  padding: 0.5rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #ddd;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: background-color 0.3s;
}
header .logo__icon {
  mix-blend-mode: multiply;
  height: 3.5rem;
  width: auto;
  gap: 0.5rem;
  padding-top: 0.5rem;
}
@media (min-width: 48rem) {
  header .logo__icon {
    height: 2.5rem;
  }
}
@media (min-width: 80rem) {
  header .logo__icon {
    height: 3.5rem;
    padding-left: 2rem;
  }
}
@media (min-width: 48rem) {
  header {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}
@media (min-width: 68.75rem) {
  header {
    padding: 0.8rem 3rem;
  }
}
@media (min-width: 80rem) {
  header {
    padding: 0 1.5rem;
  }
}

header.menu-open {
  background-color: #ebf2f8;
  -webkit-backdrop-filter: blur(6px);
          backdrop-filter: blur(6px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.header__logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.header__logo a {
  box-shadow: none !important;
  background: none !important;
  border: none !important;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
  padding: 0;
  margin: 0;
}

.menu__toggle {
  font-size: 1.7rem;
  cursor: pointer;
  color: #464647;
  -webkit-tap-highlight-color: transparent;
}
@media (min-width: 48rem) {
  .menu__toggle {
    display: none;
  }
}

.header__nav {
  display: none;
}
@media (min-width: 48rem) {
  .header__nav {
    display: flex !important;
    align-items: center;
  }
}
@media (min-width: 48rem) {
  .header__nav .nav-links {
    display: flex;
  }
}
@media (min-width: 48rem) {
  .header__nav a {
    display: block;
    text-decoration: none;
    color: #464647;
    padding: 0 1rem;
    font-size: 0.7rem;
    text-decoration: none;
    -webkit-tap-highlight-color: transparent;
  }
  .header__nav a:hover {
    font-weight: 600;
  }
}
@media (min-width: 56.25rem) {
  .header__nav a {
    font-size: 1rem;
  }
}

.menu-header__container {
  background-color: #ebf2f8;
  padding: 0;
  margin: 0;
}

.menu-header {
  background-color: #ebf2f8;
  padding: 0.5rem 1.5rem;
  display: flex;
  justify-content: left;
  align-items: center;
  border-bottom: 1px solid #ddd;
  position: relative;
  z-index: 1;
  transition: background-color 0.3s;
  top: 0;
  left: 0;
  right: 0;
}
.menu-header .logo__icon {
  mix-blend-mode: multiply;
  height: 3.5rem;
  width: auto;
  gap: 0.5rem;
  -webkit-tap-highlight-color: transparent;
  cursor: pointer;
  padding-top: 0.5rem;
}
.menu-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 1.7rem;
  cursor: pointer;
  color: #464647;
  padding-right: 0.5rem;
}

.menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  height: 100%;
  background: #ebf2f8;
  transition: right 0.3s ease;
  z-index: 1003;
  box-shadow: -2px 0 6px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-top: 0;
  -webkit-tap-highlight-color: transparent;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
@media (min-width: 48rem) {
  .menu {
    display: none;
  }
}
.menu .top-section {
  flex-grow: 1;
  padding: 1.5rem 1.5rem;
  gap: 1rem;
}
@media (min-width: 48rem) {
  .menu .top-section {
    padding: 0;
    display: flex;
    gap: 2rem;
  }
}
.menu .top-section a {
  font-size: 1.3rem;
  line-height: 2rem;
  color: #464647;
  -webkit-tap-highlight-color: transparent;
  cursor: pointer;
  padding: 0.75rem;
}
.menu .top-section a:hover {
  background-color: #5f6f85;
  opacity: 0.7;
  padding: 0.5rem;
  border-radius: 0.5rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  color: #FFFFFF;
}
.menu a {
  display: block;
  text-decoration: none;
  color: #464647;
  font-weight: normal;
}
@media (min-width: 48rem) {
  .menu a {
    font-size: 1rem;
    line-height: 1.5;
  }
}
.menu .bottom-section {
  padding: 1rem 1.5rem;
  margin-bottom: 1rem;
}
@media (min-width: 48rem) {
  .menu .bottom-section {
    display: none;
  }
}
.menu .bottom-section .button {
  width: 100%;
  text-align: center;
  border: none;
  color: #FFFFFF;
  border-radius: 0.3rem;
  text-decoration: none;
  display: inline-block;
  font-size: 0.875rem;
  padding: 0.7rem 3rem;
  margin-top: 1rem;
  background-color: #3b95d6;
  font-family: "Poppins Medium", sans-serif;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  cursor: pointer;
}
.menu .bottom-section .button:hover {
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
  transform: scale(1.02);
}
.menu .bottom-section .button:active {
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
  transform: scale(1.02);
}

.menu.active {
  right: 0;
}

.button {
  border: none;
  padding: 0.8rem 1.2rem;
  color: #FFFFFF;
  border-radius: 4px;
  text-decoration: none;
  display: inline-block;
  font-size: 0.875rem;
  padding: 0.9rem 3rem;
}
@media (min-width: 48rem) {
  .button {
    font-family: "PT Sans Bold";
    font-size: 1rem;
    padding: 1rem 3rem;
  }
}

.menu__divider {
  display: block;
  margin: 20px auto;
  width: 100%;
  margin: 0;
  padding: 0;
}

.phone__icon {
  height: 0.8rem;
  vertical-align: middle;
  margin-right: 8px;
  height: 1rem;
}
@media (min-width: 48rem) {
  .phone__icon {
    height: 0.6rem;
  }
}
@media (min-width: 56.25rem) {
  .phone__icon {
    height: 1rem;
  }
}

.hero {
  padding: 5rem 1.5rem;
  position: relative;
  min-height: 100dvh;
  height: auto;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: left;
  color: #fff;
}
@media (min-width: 48rem) {
  .hero {
    justify-content: flex-start;
    height: 80vh;
  }
}
@media (min-width: 56.25rem) {
  .hero {
    justify-content: flex-start;
    height: 100vh;
  }
}
@media (orientation: landscape) {
  .hero {
    height: auto;
    min-height: 75vh;
    padding: 4rem 1.5rem;
  }
}
.hero .hero__video {
  position: absolute;
  top: 0;
  left: 0;
  min-width: 100%;
  min-height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -1;
}
@media (min-width: 80rem) {
  .hero .hero__video {
    position: fixed;
  }
}
.hero .hero__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 1;
  align-items: flex-start;
}
@media (min-width: 48rem) {
  .hero .hero__content {
    padding-left: 1rem;
  }
}
@media (min-width: 68.75rem) {
  .hero .hero__content {
    padding-top: 9rem;
    padding-left: 2.5rem;
  }
}
.hero p {
  font-size: 1.125rem;
  line-height: 1.75rem;
  margin-bottom: 1rem;
}
.hero p .subtitle {
  padding: 0;
  margin-top: 0;
}
@media (min-width: 48rem) {
  .hero p {
    align-items: flex-start;
    font-size: 1.3rem;
    max-width: 35rem;
  }
}
@media (min-width: 56.25rem) {
  .hero p {
    line-height: 2rem;
    max-width: 50rem;
  }
}
@media (min-width: 68.75rem) {
  .hero p {
    font-size: 1.4rem;
  }
}
@media (min-width: 80rem) {
  .hero p {
    max-width: 48rem;
    line-height: 2.3rem;
    margin: 0 0 1rem 0;
  }
}
.hero h1 {
  font-size: 3rem;
  line-height: 1.2;
  letter-spacing: 0.05em;
}
@media (min-width: 48rem) {
  .hero h1 {
    max-width: 35rem;
    font-size: 3.4rem;
    line-height: 1.5;
    font-family: "Playfair Display SemiBold", sans-serif;
  }
}
@media (min-width: 68.75rem) {
  .hero h1 {
    padding-top: 6rem;
    max-width: 35rem;
    font-size: 4rem;
  }
}
@media (min-width: 80rem) {
  .hero h1 {
    padding-top: 10rem;
    font-size: 5rem;
    max-width: 50rem;
  }
}
.hero .hero__title {
  color: #FFFFFF;
  z-index: 1;
  margin-top: 3rem;
  padding-top: 1.5rem;
}
@media (min-width: 68.75rem) {
  .hero .hero__title {
    margin-top: 4rem;
  }
}
.hero .hero__button {
  background-color: #3b95d6;
  color: #FFFFFF;
  padding: 0.7rem 3.3rem;
  border-radius: 0.3rem;
  font-family: "Poppins Medium", sans-serif;
  font-size: 0.875rem;
  text-decoration: none;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  z-index: 1;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  margin-top: 2.7rem;
  align-self: center;
}
@media (min-width: 48rem) {
  .hero .hero__button {
    align-self: flex-start;
  }
}
@media (min-width: 80rem) {
  .hero .hero__button {
    font-size: 1rem;
    margin-top: 5rem;
    margin-bottom: 1.3rem;
  }
}
.hero .hero__button:hover {
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
  transform: scale(1.02);
}
.hero .hero__button:active {
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
  transform: scale(1.02);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(83, 105, 133, 0.7);
  z-index: 0;
}

.about {
  background-color: #FFFFFF;
  padding: 4rem 3rem;
  text-align: justify;
  color: #464647;
}
.about .about__container {
  max-width: 500px;
  margin: 0 auto;
}
@media (min-width: 48rem) {
  .about .about__container {
    display: none;
  }
}
@media (min-width: 56.25rem) {
  .about .about__container {
    display: none;
  }
}
@media (min-width: 68.75rem) {
  .about .about__container {
    display: none;
  }
}
@media (min-width: 80rem) {
  .about .about__container {
    display: none;
  }
}
.about .about__container h2 {
  font-size: 2.5rem;
  margin: 0 0 3rem 0;
  text-align: center;
}
.about .about__container p {
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 2.9rem;
  color: #5f6f85;
  text-align: left;
}
.about .about__container .about__image {
  display: block;
  margin: 0 auto 2rem auto;
  width: 80%;
  height: auto;
  border-radius: 0.3rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transition: transform 0.3s ease;
}
@media (min-width: 48rem) {
  .about .about__container .about__image:hover {
    transform: scale(1.06);
  }
}
.about .about__container .about__image.zoomed {
  transform: scale(1.12);
}

.about__wrapper {
  display: none;
}
@media (min-width: 48rem) {
  .about__wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;
    text-align: left;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
  }
}
@media (min-width: 48rem) {
  .about__wrapper .about__image-wrapper {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
@media (min-width: 48rem) {
  .about__wrapper .about__image {
    padding: 1rem;
    width: 110%;
    max-width: 20rem;
    height: auto;
    cursor: pointer;
    transition: transform 0.3s ease;
  }
  .about__wrapper .about__image.zoomed {
    transform: scale(1.12);
  }
}
@media (min-width: 68.75rem) {
  .about__wrapper .about__image {
    max-width: 23rem;
  }
}
@media (min-width: 48rem) {
  .about__wrapper .about__text {
    flex: 1;
    padding: 2rem;
  }
}
@media (min-width: 48rem) {
  .about__wrapper .about__text h2 {
    font-size: 2.5rem;
    margin: 0 0 2rem 0;
    text-align: left;
  }
}
@media (min-width: 68.75rem) {
  .about__wrapper .about__text h2 {
    font-size: 3rem;
  }
}
@media (min-width: 48rem) {
  .about__wrapper .about__text p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #5f6f85;
    text-align: left;
    margin-bottom: 0rem;
  }
}
@media (min-width: 68.75rem) {
  .about__wrapper .about__text p {
    font-size: 1.1rem;
  }
}

.services {
  background-color: #ebf2f8;
  text-align: center;
  padding: 4rem 3rem;
}
@media (min-width: 80rem) {
  .services {
    background-color: rgba(235, 242, 248, 0.5);
  }
}
.services h2 {
  color: #464647;
  font-size: 2.5rem;
  margin: 0 0 3rem 0;
  text-align: center;
}
@media (min-width: 68.75rem) {
  .services h2 {
    font-size: 3rem;
  }
}
.services .service-card {
  background-color: #FFFFFF;
  border-radius: 0.5rem;
  padding: 1.5rem;
  margin: 1rem auto;
  max-width: 17.5rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  touch-action: manipulation;
  pointer-events: auto;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  -webkit-tap-highlight-color: transparent;
}
@media (min-width: 48rem) {
  .services .service-card:hover {
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
    transform: scale(1.02);
  }
}
@media (min-width: 48rem) {
  .services .service-card {
    max-width: 20rem;
    margin: 1rem;
  }
}
@media (min-width: 80rem) {
  .services .service-card {
    max-width: 23rem;
  }
}
.services .service-card.zoomed {
  transform: scale(1.02);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.5);
}
.services .service-card h3 {
  margin: 1rem 0 0.5rem;
  font-size: 1.2rem;
  color: #3b95d6;
  font-family: "Playfair Display Medium", sans-serif;
}
@media (min-width: 68.75rem) {
  .services .service-card h3 {
    font-size: 1.3rem;
  }
}
.services .service-card p {
  font-size: 0.9rem;
  color: #5f6f85;
  margin-bottom: 0.5rem;
}
@media (min-width: 68.75rem) {
  .services .service-card p {
    font-size: 1.1rem;
  }
}
.services .service-card .service-icon {
  width: 3rem;
  height: auto;
}

@media (min-width: 48rem) {
  .cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
  }
}
@media (min-width: 68.75rem) {
  .cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 2rem;
    gap: 0;
  }
}
@media (min-width: 80rem) {
  .cards {
    margin: 2rem 4rem;
    gap: 2rem;
  }
}

.floating-phone {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
  background-color: #7ab6eb;
  opacity: 0.8;
  padding: 0.6rem 0.7rem 0.5rem 0.7rem;
  border: 0.05rem solid #7ab6eb;
  border-radius: 50%;
  box-shadow: 0 0 12px rgba(122, 182, 235, 0.5), 0 0 24px rgba(175, 218, 255, 0.35), 0 0 36px rgba(54, 130, 189, 0.25);
  transition: transform 0.3s ease;
  animation: glowPulse 1.8s infinite ease-in-out;
  -webkit-tap-highlight-color: transparent;
}
.floating-phone img {
  width: 1.55rem;
  height: 1.55rem;
  filter: brightness(0) invert(1);
}
@media (min-width: 80rem) {
  .floating-phone img {
    width: 1.1rem;
    height: 1rem;
  }
}
.floating-phone:hover {
  background-color: #61b4fc;
}
.floating-phone:active {
  transform: scale(1.2);
}

@keyframes glowPulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 14px rgba(122, 182, 235, 0.5), 0 0 28px rgba(175, 218, 255, 0.35), 0 0 36px rgba(54, 130, 189, 0.25);
  }
  50% {
    transform: scale(1.08);
    box-shadow: 0 0 22px rgba(122, 182, 235, 0.7), 0 0 36px rgba(175, 218, 255, 0.5), 0 0 50px rgba(54, 130, 189, 0.35);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 14px rgba(122, 182, 235, 0.5), 0 0 28px rgba(175, 218, 255, 0.35), 0 0 36px rgba(54, 130, 189, 0.25);
  }
}
.rates {
  background-color: #FFFFFF;
  text-align: center;
  padding: 4rem 1rem;
  color: #464647;
}
.rates .subnote {
  font-size: 0.8em;
  display: block;
  margin-top: 0.25rem;
  color: inherit;
  margin-bottom: 0.25rem;
}
.rates h2 {
  font-size: 2.5rem;
  margin: 0 0 3rem 0;
  text-align: center;
}
@media (min-width: 68.75rem) {
  .rates h2 {
    font-size: 3rem;
  }
}
.rates .rates__note {
  font-family: "Poppins Medium", sans-serif;
  font-size: 0.9rem;
  margin-bottom: 2.5rem;
}
@media (min-width: 48rem) {
  .rates .rates__note p {
    align-items: center;
  }
}
@media (min-width: 68.75rem) {
  .rates .rates__note {
    font-size: 1.1rem;
  }
}
.rates .rate-card {
  background-color: #ebf2f8;
  padding: 1.5rem;
  margin: 1rem auto;
  max-width: 20rem;
  border-radius: 0.5rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  touch-action: manipulation;
  pointer-events: auto;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  -webkit-tap-highlight-color: transparent;
}
@media (min-width: 48rem) {
  .rates .rate-card {
    flex: 1 1 17.5rem;
    max-width: 16.25rem;
    min-width: 16.25rem;
    box-sizing: border-box;
    margin: 1rem;
  }
}
@media (min-width: 56.25rem) {
  .rates .rate-card {
    flex: 1 1 17.5rem;
    max-width: 24rem;
    min-width: 24rem;
    box-sizing: border-box;
    margin: 1rem;
  }
}
@media (min-width: 68.75rem) {
  .rates .rate-card {
    max-width: 25rem;
    min-width: 25rem;
    box-sizing: border-box;
    margin: 1rem;
  }
}
@media (min-width: 80rem) {
  .rates .rate-card {
    min-height: 10rem;
  }
}
@media (min-width: 48rem) {
  .rates .rate-card:hover {
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
    transform: scale(1.02);
  }
}
.rates .rate-card.zoomed {
  transform: scale(1.02);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.5);
}
.rates .rate-card h3 {
  margin: 1rem 0 0.5rem;
  font-size: 1.2rem;
  color: #3b95d6;
  font-family: "Playfair Display Medium", sans-serif;
}
@media (min-width: 68.75rem) {
  .rates .rate-card h3 {
    font-size: 1.3rem;
  }
}
.rates .rate-card p {
  font-size: 0.9rem;
  color: #5f6f85;
  margin: 0 0 0.2rem 0;
  font-family: "Poppins Medium", sans-serif;
}
@media (min-width: 68.75rem) {
  .rates .rate-card p {
    font-size: 1rem;
  }
}

@media (min-width: 48rem) {
  .rate-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
  }
}
@media (min-width: 56.25rem) {
  .rate-cards {
    margin: 2rem 4.5rem 1rem 4.5rem;
    gap: 1rem;
  }
}
@media (min-width: 80rem) {
  .rate-cards {
    margin: 2rem 20rem 1rem 20rem;
    gap: 1rem;
  }
}

.portfolio {
  background-color: #ebf2f8;
  text-align: center;
  padding: 4rem 3rem;
}
@media (min-width: 80rem) {
  .portfolio {
    background-color: rgba(235, 242, 248, 0.6);
  }
}
.portfolio h2 {
  font-size: 2.5rem;
  margin: 0 0 3rem 0;
  text-align: center;
  color: #464647;
}
@media (min-width: 80rem) {
  .portfolio h2 {
    font-size: 3rem;
  }
}
.portfolio p {
  font-family: "Poppins Medium", sans-serif;
  font-size: 0.9rem;
  color: #464647;
  margin-bottom: 2rem;
}
@media (min-width: 48rem) {
  .portfolio p {
    margin-bottom: 2.5rem;
  }
}
@media (min-width: 80rem) {
  .portfolio p {
    font-size: 1.1rem;
  }
}
.portfolio__gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}
@media (min-width: 48rem) {
  .portfolio__gallery {
    gap: 3rem;
  }
}
.portfolio__item {
  padding: 0;
  border-radius: 0.2rem;
  width: 90%;
  max-width: 15rem;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transition: transform 0.3s ease;
}
@media (min-width: 80rem) {
  .portfolio__item:hover {
    transform: scale(1.06);
  }
}
.portfolio__item.zoomed {
  transform: scale(1.12);
}
.portfolio__item img {
  width: 100%;
  height: auto;
  border-radius: 0.2rem;
}

.contact {
  background-color: #FFFFFF;
  text-align: center;
  padding: 4rem 1rem;
  color: #464647;
}
.contact h2 {
  font-size: 2.5rem;
  margin: 0 0 3rem 0;
  text-align: center;
}
@media (min-width: 80rem) {
  .contact h2 {
    font-size: 3rem;
  }
}
.contact p {
  font-family: "Poppins Medium", sans-serif;
  font-size: 0.9rem;
  color: #464647;
  margin-bottom: 2rem;
}
@media (min-width: 48rem) {
  .contact p {
    margin-bottom: 2.5rem;
  }
}
@media (min-width: 80rem) {
  .contact p {
    font-size: 1.1rem;
  }
}
.contact__info {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 1.5rem;
  max-width: 400px;
  margin: 0 auto;
}
.contact__item {
  display: flex;
  align-items: center;
  font-family: "Poppins Medium", sans-serif;
  color: #5f6f85;
  padding: 0 1rem;
}
.contact__item p {
  text-align: left;
  gap: 0.3rem;
  font-family: "Poppins Medium", sans-serif;
  font-size: 1.1rem;
}
@media (min-width: 48rem) {
  .contact__item p {
    align-items: center;
    margin-bottom: 1.1rem;
    margin-top: 0;
  }
}
@media (min-width: 48rem) {
  .contact__item {
    flex: 1;
    max-width: 18.75rem;
    padding: 0;
    margin: 0 4rem;
  }
}
.contact__item a {
  color: #464647;
  text-decoration: none;
  font-family: "Poppins Medium", sans-serif;
  text-align: left;
  font-size: 0.9rem;
  -webkit-tap-highlight-color: transparent;
  text-decoration: none;
}
.contact__item a:hover {
  font-weight: 600;
}
.contact__item span {
  text-align: left;
}
.contact .phone__icon,
.contact .email__icon,
.contact .location__icon,
.contact .fb__icon {
  height: 2.8rem;
  vertical-align: middle;
  margin-right: 0.3rem;
  opacity: 0.6;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}
.contact .phone__icon:hover,
.contact .email__icon:hover,
.contact .location__icon:hover,
.contact .fb__icon:hover {
  opacity: 0.8;
}
.contact .location-line {
  display: flex;
  align-items: flex-start;
  color: #464647;
  font-size: 0.9rem;
}
.contact .location-line span {
  padding-left: 0.2rem;
}

footer {
  text-align: center;
  padding: 1rem;
  background-color: #ebf2f8;
  font-size: 0.7rem;
  color: #2e2e2e;
}
@media (min-width: 48rem) {
  footer {
    padding: 2rem;
  }
}

footer a {
  color: #414f64;
  text-decoration: none;
  transition: color 0.2s ease;
  -webkit-tap-highlight-color: transparent;
}

footer a:focus,
footer a:active {
  color: #5f6f85;
  box-shadow: none !important;
  background: none !important;
  border: none !important;
}

footer a:hover {
  color: #445163;
}

footer a:visited {
  color: #445163;
}/*# sourceMappingURL=main.css.map */