/** @format */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  /* font-family: "Playfair Display", serif; */
}

/* #preloader {
  display: none !important;
} */

a {
  display: inline-block;
  color: #000;
  text-decoration: none;
  cursor: pointer;
}

body,
html {
  width: 100%;
  height: 100%;
  scroll-behavior: smooth;
}

body {
  width: 100vw;
  overflow-x: hidden;
}

button {
  border: none;
  outline: none;
}
/* preloader */
/* preloader */
/* preloader */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #faf8f5;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.6s ease, visibility 0.6s;
}

/* Hide preloader smoothly */
#preloader.preloader-hide {
  opacity: 0;
  visibility: hidden;
}

.loader-content {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Wrap spinner and logo together */
.logo-wrapper {
  position: relative;
  width: 100px;
  height: 100px;
}

/* Spinner centered */
.spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 55px;
  height: 55px;
  transform: translate(-50%, -50%);
  border: 6px solid rgba(255, 255, 255, 0.2);
  border-top-color: #000;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  z-index: 1;
}

/* Logo centered */
.londing_logo {
  opacity: 0.3;
  width: 100px;
  height: 100px;
  object-fit: contain;
  position: relative;
  z-index: 2;
}

/* Credit text */
.credit-text {
  margin-top: 20px;
  font-family: "Montserrat", sans-serif;
  font-size: 0.8rem;
  color: #aaa;
  opacity: 0.8;
}

/* Spinner animation */
@keyframes spin {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
/*  */

.hero {
  width: 100vw;
  height: 100vh;
  position: relative;
  overflow: hidden;
}

.slider {
  width: 100%;
  height: 100%;
  position: relative;
}

.slide {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  z-index: 0;
}

.slide.active {
  opacity: 1;
  z-index: 1;
}

/* Arrows */
.nav-arrow,
.counter-arrow {
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  user-select: none;
}

/* Left Arrow */
.left-arrow {
  position: absolute;
  top: 50%;
  left: 6vw;
  transform: translateY(-50%);
  z-index: 2;
}

/* Right Side Counter and Arrow */
#prev,
#next {
  transition: all ease-in-out 0.4s;
}

#prev:hover,
#next:hover {
  font-size: 1.6rem;
}

.slide-counter-wrapper {
  position: absolute;
  top: 50%;
  right: 6vw;
  transform: translateY(-50%);
  z-index: 2;
}

.slide-counter {
  text-align: center;
  font-size: 0.9rem;
  color: white;
  font-family: "Georgia", serif;
  letter-spacing: 2px;
  line-height: 2rem;
  user-select: none;
}

.counter-arrow {
  font-size: 1.5rem;
  margin: 5vh 0;
}

/* Text Overlay */
.hero-text {
  position: absolute;
  bottom: 10%;
  width: 100%;
  text-align: center;
  color: white;
  z-index: 2;
  padding: 0 2rem;
}

.hero-text h1 {
  font-size: 1.8rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.hero-text p {
  font-size: 1.1rem;
  font-family: "Cursive", sans-serif;
  margin-bottom: 1rem;
}

.hero_book_btn {
  /* font-family: "Cursive", sans-serif; */
  font-weight: normal;
  background-color: #fff;
  color: #000;
  padding: 12px 25px;
  border: 1px solid #fff;
  transition: all ease-in-out 0.3s;
}

.hero_book_btn:hover {
  transform: scale(0.95);
  /* border: 1px solid #fff; */
}

@media (max-width: 768px) {
  .hero {
    height: 80vh;
  }
  .hero-text h1 {
    transform: translateY(10px);
    font-size: 20px;
  }
  .hero p {
    transform: translateY(10px);
  }

  .hero_book_btn {
    /* padding: 8px 22px; */
    transform: translateY(10px);
    font-size: 12px;
  }
}

/* nav */
/* nav */
/* nav */

nav {
  /* font-family: "Josefin Sans", sans-serif; */
  /* font-weight: 500; */
  color: #fff;
  height: 9.7vh;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  background-color: none;
  /* justify-content: space-evenly; */
  /* border-bottom: 0.1rem solid black; */
  z-index: 100;
  /* box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02); */
  /* margin-bottom: 10vh; */
}

.other_nav {
  color: #000;
  background-color: #faf8f5;
}

.contact_us i {
  display: inline-block;
  transition: all 0.5s ease-in-out; /* Smooth transition for better effect */
}
.home_nav a {
  color: inherit;
}
.home_language {
  margin: 0 8px;
  transition: all ease-in-out 0.2s;
}

.home_language:hover {
  color: rgba(56, 56, 56, 0.8) !important;
  text-decoration: underline;
}

.language_active {
  color: rgba(56, 56, 56, 0.8) !important;
  text-decoration: underline;
}

.contact_us:hover i {
  transform: rotate(90deg);
}

nav ul li {
  display: flex;
  align-items: center;
  /* font-weight: 800; */
}

nav .menu {
  text-transform: uppercase;
}

nav ul li .ri-add-fill {
  margin-right: 0.7vw;
  font-size: 1vw;
}

nav ul li .ri-menu-line {
  margin: 0 0.7vw;
  font-size: 1.5rem;
  font-weight: 100;
}

nav ul {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  width: 100%;
  padding: 0 7vw;
}

nav ul li {
  cursor: pointer;
  font-size: 0.8vw;
}

.logo {
  height: 5.2vh;
  transform: translateX(-7px);
  margin-top: 0.5vw;
  transform: translateX(3.5vw);
}

@media (max-width: 768px) {
}

.blur_bg {
  height: 100vh;
  width: 100vw;
  position: fixed;
  top: 0;
  left: 0;
  opacity: 1;
  display: inline-block;
  z-index: -300;
  transition: all 1s ease-in-out;
  background-color: rgba(255, 255, 255, 0.6); /* Semi-transparent background */
  backdrop-filter: blur(10px); /* Apply blur effect */
  -webkit-backdrop-filter: blur(100px); /* For Safari support */
}

.blur_bg.active {
  z-index: 300;
}

.side_nav {
  /* font-family: "Josefin Sans", sans-serif; */
  height: 100vh;
  width: 38vw;
  position: fixed;
  top: 0;
  right: -50vw;
  background-color: #fff;
  z-index: 300;
  padding: 5.5vw;
  transition: all 1s ease-in-out;
}

.active_side_nav {
  right: 0;
}

.side_nav ul {
  list-style: none;
  text-decoration: none;
}

.side_nav li {
  font-size: 20px;
  margin-top: 24px;
  cursor: pointer;
  text-transform: uppercase;
}

.side_nav a {
  text-decoration: none;
  color: #000;
  /* font-weight: 1000; */
}

.side_nav li span {
  /* font-size: 0.3rem; */
  display: inline-block;
  transform: rotateY(-90deg);
  transition: all 0.4s ease-in-out;
}

.side_nav li:hover span {
  transform: rotateY(0deg);
}

.small_links.first {
  margin-top: 35px !important;
}

.small_links {
  margin-top: 20px !important;
}

.small_links a {
  font-size: 15px;
}

.close_icon_cover {
  position: absolute;
  right: 2px;
  top: 15px;
  height: 4rem;
  width: 4rem;
  /* background-color: aqua; */
  display: flex;
  justify-content: center;
  align-items: center;
}

.close_icon {
  padding: 14px 20px;
  border-radius: 90px;
  background-color: black;
  color: #fff;
  z-index: 100;
  cursor: pointer;
  transition: all 0.4s ease-in-out;
  box-sizing: border-box;
  font-size: 1.2rem;
  transform: rotate(45deg);
}

/* .close_icon i {
  font-size: 24px;
  color: white;
} */

.close_icon:hover {
  padding: 10px 16px;
  border-radius: 90px;
}

/*  */
/*  */
/*  */
.dropdown {
  position: relative;
}

.submenu {
  display: none;
  position: absolute;
  left: 0;
  top: 100%;
  background: #fff;
  padding: 10px 0;
  z-index: 999;
  min-width: 200px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.submenu li {
  display: block;
  padding: 8px 20px;
}

.dropdown:hover .submenu {
  display: block;
}

/* ----------------side contact-------------- */

@media (max-width: 768px) {
  * {
    box-sizing: border-box;
  }
  html,
  body {
    width: 100vw !important;
    /* overflow-x: hidden !important; */
  }

  .language_active {
    text-decoration: none;
  }

  .logo {
    transform: translateX(0);
    height: 3.4vh;
  }

  nav {
    position: fixed !important;
    top: 0 !important;
    padding-top: 1vh !important;
    padding-bottom: 1vh !important;
    height: 7vh !important;
    box-shadow: 4px 4px 20px rgba(0, 0, 0, 0.1);
  }

  /* nav .logo {
    transform: translateX(-11px);
  } */

  nav ul li {
    font-size: 10px;
  }

  /* side nav */
  /* side nav */
  /* side nav */

  .close_icon {
    padding: 13px 22px !important;
    font-size: 20px !important;
  }

  nav ul li .ri-menu-line,
  .ri-add-fill {
    font-size: 18px !important;
  }

  .side_nav {
    height: 120vh !important;
    width: 100vw !important;
    right: -100vw !important;
    padding: 12vw !important;
  }

  .side_nav li {
    font-size: 18px !important;
  }

  .contact_us {
    display: none;
  }

  .side_nav.active_side_nav,
  .active_contact {
    right: 0 !important;
  }

  .blur_bg {
    height: 0vh !important;
    width: 0vw !important;
  }

  .home_language {
    margin: 6px;
  }

  /* side nav */
  /* side nav */
  /* side nav */
}

/* -------------<contact-card-btn>----------------- */
/* -------------<contact-card-btn>----------------- */
/* -------------<contact-card-btn>----------------- */

.contact-card-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 3.7rem;
  height: 3.7rem;
  border-radius: 50%;
  background-image: url("assets/my_photo/239.webp");
  background-size: cover;
  background-position: center;
  z-index: 30;
  cursor: pointer;
  overflow: visible;
}

/* Badge to the left of the button with gap */
.contact_me_beadge {
  position: absolute;
  right: calc(100% + 10px); /* 12px horizontal gap */
  top: 50%;
  transform: translateY(-50%);
  height: 40px;
  width: 0;
  opacity: 0;
  /* background: #958a7f; */
  background-color: #d9993a;

  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  overflow: hidden;
  transition: all 0.4s ease;
  padding: 0;
}

.contact_me_beadge p {
  padding: 0 20px;
  color: white;
  /* color: #000; */
  font-size: 14px;
  margin: 0;
}

/* .contact_me_beadge_fr p {
} */

/* Slide out effect */
.contact-card-btn:hover .contact_me_beadge {
  width: 150px;
  opacity: 1;
  padding: 0 20px;
}

/* -------------<contact card>----------------- */
/* -------------<contact card>----------------- */
.contact_card_layer {
  top: 0;
  left: 0;
  position: fixed;
  z-index: 1000;
  height: 100vh;
  width: 100vw;
  background-color: rgba(0, 0, 0, 0.1);
  /* background-color: rgba(255, 255, 255, 0.6); */
  backdrop-filter: blur(10px);
  display: flex;
  justify-content: center;
  align-items: center;
  visibility: hidden;
  opacity: 0;
  transition: all 0.8s ease-in-out;
}

.contact_card_layer.active {
  opacity: 1;
  visibility: visible;
}

.contact_card {
  position: relative;
  min-width: 37vw;
  height: 95vh;
  background-color: #faf8f5;
  display: flex;
  flex-direction: column;
  /* justify-content: space-evenly; */
  align-items: center;
}

.contact_card_close_btn {
  position: absolute;
  top: 2vh;
  right: 1vw;
  display: inline;
  font-size: 27px;
  cursor: pointer;
  transition: all ease-in 0.2s;
}
.contact_card_close_btn:hover {
  scale: 0.9;
}

.contact_card img {
  margin: 6vh 0 5vh 0;
  /* margin: 8vh 0 5vh 0; >> */
  height: 6.5rem;
  width: 6.5rem;
  border-radius: 100px;
  object-fit: cover;
}

.contact_card_name {
  text-align: center;
  font-size: 2.2rem;
  color: #53504c;
  margin-bottom: 1.2vh;
}

.contact_card_photographer {
  font-size: 1.2rem;
  color: #838076;
  margin-bottom: 2.2vh;
}

.contact_card_number {
  font-size: 1.2rem;
  color: #838076;
  margin-bottom: 1.2vh;
}

.contact_card_email {
  font-size: 1.2rem;
  color: #838076;
  margin-bottom: 2.2vh;
}

.contact_card_icon {
  width: 300px;
  font-size: 1.3rem;
  display: flex;
  gap: 5px;
  justify-content: center;
  border: 1px solid #bba595;
  color: #bba595;
  border-radius: 5px;
  cursor: pointer;
  text-align: center;
  padding: 10px 0;
  margin-bottom: 14px;
  transition: all ease-in-out 0.2s;
}

.contact_card_icon:hover {
  background-color: #958a7f;
  border: 1px solid #958a7f;
  color: #fff;
}

.contact_card_last_btn {
  background-color: #958a7f;
  transition: all ease-in-out 0.2s;
  color: #fff;
}

.contact_card_last_btn:hover {
  background-color: transparent;
  border: 1px solid #bba595;
  color: #bba595;
}

@media (max-width: 768px) {
  .contact_card {
    height: 90vh;
    width: 90vw;
  }

  .contact_card img {
    margin: 4.5vh 0 3.5vh 0;
  }

  .contact_card_name {
    font-size: 24px;
  }

  .contact_card_number {
    font-size: 16px;
  }

  .contact_card_email {
    font-size: 16px;
  }

  .contact_card_icon {
    transform: scale(0.9);
  }
}

/* -------------<top_to_scroll>----------------- */
/* -------------<top_to_scroll>----------------- */
/* -------------<top_to_scroll>----------------- */

.masonry-grid img {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease-out,
    transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.masonry-grid img.active {
  opacity: 1;
  transform: translateY(0);
}

/* ------- */
.top_to_scroll {
  height: 20px;
  width: 20px;
  display: none;
  justify-content: center;
  align-items: center;
  position: fixed;
  right: 20px;
  bottom: 100px;
  z-index: 99;
  cursor: pointer;
  transition: all ease-in-out 0.2s;
  background-color: rgb(0, 0, 0, 0.2);
  color: #fff;
  border-radius: 100px;
}

.top_to_scroll:hover {
  transform: scale(1.1);
}

/* -------------<portfolio home>----------------- */
/* -------------<portfolio home>----------------- */
/* -------------<portfolio home>----------------- */

.home_portfolio {
  width: 100vw;
  overflow-x: hidden;
  background-color: #faf8f5;
  padding-bottom: 10vh;
}

.home_portfolio h3 {
  text-align: center;
  margin: 6vh 0;
  font-size: 30px;
}

.home_portfolio .portfolio_cards {
  display: flex;
  justify-content: space-evenly;
  padding: 0 6vw;
}

.home_portfolio .card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.home_portfolio .card img {
  height: 60vh;
  width: 20vw;
  object-fit: cover;
}

.home_portfolio .card p {
  font-size: 22px;
  font-style: italic;
  text-transform: lowercase;
}

.home_portfolio .card a {
  /* font-family: "Cursive", sans-serif; */
  width: 90%;
  text-align: center;
  font-weight: normal;
  color: #000;
  padding: 12px 0px;
  border: 1px solid #000;
  transition: all ease-in-out 0.3s;
}

.home_portfolio .card a:hover {
  background-color: #000;
  color: #fff;
}

@media (max-width: 768px) {
  .home_portfolio h3 {
    text-align: center;
    margin: 4vh 0;
    font-size: 26px;
  }

  .home_portfolio .portfolio_cards {
    flex-direction: column;
    gap: 5vh;
    padding: 0 6vw;
  }

  .home_portfolio .card {
    gap: 12px;
  }
  .home_portfolio .card img {
    height: 50vh;
    width: 99%;
  }

  .home_portfolio .card a {
    width: 95%;
    background-color: #000;
    color: #fff;
  }
}

/* -------------<about home>----------------- */
/* -------------<about home>----------------- */
/* -------------<about home>----------------- */

.about_home {
  min-height: 110vh;
  width: 100vw;
  display: flex;
  align-items: center;
  padding: 0vh 15vw;
  gap: 10vw;
  background-color: #1c1b1a;
  color: #fff;
}

.about_main {
  margin-top: 2.5vh;
  background-color: #faf8f5;
  color: #000 !important;
}
.about_main h2 {
  color: #000 !important;
}

.about_home_left {
  flex: 1;
  width: 50%;
}

.about_home_left h2 {
  color: rgba(255, 250, 238, 1);
  font-size: 3vw;
  margin-bottom: 2vh;
  transition: all ease-in-out 0.4s;
}

.about_home_left h2:hover {
  color: #d9993a;
}

.about_home_left h3 {
  margin-bottom: 4vh;
  font-size: 1.3vw;
}

.about_home_left p {
  margin-bottom: 4vh;
}

.about_home_left .last_pera {
  margin-bottom: 4vh;
}

.about_home_left a {
  display: inline-block;

  background-color: #d9993a;
  padding: 14px 20px;
  border: 2px solid #d9993a;
  transition: all 0.4s ease-in-out;
}

.about_home_left a:hover {
  background-color: transparent;
  color: #fff;
  transform: scale(0.95);
}

.about_home_right {
  flex: 1;
  width: 50%;
}

.about_home_right img {
  max-width: 470px;
  margin: 0 auto;
  display: block;
}

.about_home .admin_phone {
  display: none;
}

@media (max-width: 768px) {
  .about_home {
    flex-direction: column;
    padding: 4vh 8vw;
    gap: 4vh;
  }

  .about_main {
    margin-top: 0 !important;
  }

  .about_home_left,
  .about_home_right {
    flex: 1 1 100%;
    width: 100%;
    text-align: center;
  }
  .about_home_right {
    order: 1;
  }
  .about_home_left {
    order: 2;
  }

  .about_home_left h2 {
    font-size: 6vw;
  }

  .about_home_left h3 {
    font-size: 4vw;
    margin-bottom: 4vh;
  }

  .about_home_left p {
    font-size: 3.5vw;
    margin-bottom: 2.5vh;
  }

  .about_home_left a {
    font-size: 3.5vw;
    padding: 10px 16px;
  }

  .about_home_right img {
    width: 80vw !important;
    /* height: auto; */
  }

  .about_home_right .admin_phone {
    display: block;
  }
  .about_home_right .admin_desktop {
    display: none;
  }
}

/* -------------<about page>----------------- */
/* -------------<about page>----------------- */
/* -------------<about page>----------------- */

.contact_page_whatsapp_btn {
  color: #fff !important;
  background-color: #000 !important;
  border: 1px solid #000 !important;
}

.contact_page_whatsapp_btn:hover {
  transform: scale(1) !important;
  background-color: transparent !important;
  border: 1px solid #000 !important;
  color: #000 !important;
}

.about-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 40px;
}

.slider-section {
  flex: 1;
  min-width: 300px;
  max-width: 40%;
  position: relative;
}

.main-slider {
  overflow: hidden;
  height: 700px; /* Increased from 500px */
  position: relative;
}

.slider-track {
  display: flex;
  transition: transform 1s ease;
}

.slider-img {
  width: 100%;
  height: 700px; /* Increased from 500px */
  object-fit: cover;
  flex-shrink: 0;
  position: relative;
}

.slider-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.view-all-btn {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background-color: rgba(255, 255, 255, 0.7);
  padding: 10px 20px;
  border: none;
  font-weight: bold;
  cursor: pointer;
  border-radius: 6px;
  font-style: italic;
  text-transform: lowercase;
}

.thumbnail-row {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 15px;
}

.thumb {
  width: 60px;
  height: 60px;
  object-fit: cover;
  cursor: pointer;
  opacity: 0.6;
  border: 2px solid transparent;
  transition: 0.3s;
}

.thumb.active {
  opacity: 1;
  /* border: 2px solid #000; */
  border-radius: 10%;
}

.about-text {
  flex: 1;
  max-width: 50%;
  padding-left: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-text h2 {
  font-size: 32px;
  margin-bottom: 20px;
}

.about-text p {
  font-size: 17px;
  line-height: 1.6;
  margin-bottom: 2vh;
}

@media (max-width: 768px) {
  .about-container {
    flex-direction: column;
    padding: 10px;
  }
  .slider-section {
    order: 2;
  }

  .slider-section,
  .about-text {
    max-width: 100%;
    padding-left: 0;
    text-align: center;
  }

  .about-text h2 {
    text-transform: capitalize;
    font-size: 26px;
    font-style: italic;
  }

  .about-text p {
    display: none;
  }

  .view-all-btn {
    font-size: 12px;
  }

  .main-slider {
    height: 500px; /* Increased from 300px */
  }

  .slider-img {
    height: 500px; /* Increased from 300px */
  }
}

/* -------------<testimonia home>----------------- */
/* -------------<testimonia home>----------------- */
/* -------------<testimonia home>----------------- */

.reviews {
  font-size: 1.5rem;
  letter-spacing: 4px;
  /* margin: 20vh 0 5vh 0; */
  padding: 15vh 0 0vh 0;
  background-color: #faf8f5;
  text-align: center;
  text-transform: uppercase;
  color: #53504c;
}

.testimonial-section {
  /* margin: 10vh 0; */
  min-height: 80vh;
  background: url("assets/newborn/14.webp") no-repeat top center / cover;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5);
  /* background-color: rgb(250, 248, 245, 0.3); */
}

.testimonial-box {
  position: relative;
  z-index: 1;
  background-color: rgb(250, 248, 245, 0.9);
  color: #53504c;
  padding: 2rem;
  max-width: 800px;
  margin: 1rem;
  border-radius: 8px;
  /* border-radius: 12px; */
  text-align: center;
  transition: all 0.5s ease;
}

.testimonial-box p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #53504c;
  margin-bottom: 1rem;
  transition: opacity 0.5s ease-in-out;
}

.author {
  font-weight: bold;
  letter-spacing: 2px;
  color: #666;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.fade {
  opacity: 1;
}

.fade-out {
  opacity: 0;
}

.reviews .nav-btn {
  position: relative;
  top: 45vh;
  transform: scale(0.6);
  background: none;
  border: none;
  font-size: 2rem;
  color: #000;
  cursor: pointer;
  z-index: 3;
  padding: 0 10px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 100px;
  padding: 10px 13px;
  transition: all ease-in-out 0.3s;
}

.nav-btn:hover {
  transform: scale(0.5);
}

.nav-left {
  right: 45vw;
}

.nav-right {
  left: 44vw;
}

@media (max-width: 768px) {
  .reviews .nav-btn {
    top: 75vh;
  }

  .nav-left {
    left: 0vw;
  }

  .nav-right {
    left: -3vw;
  }

  .testimonial-box {
    padding: 1.5rem;
  }

  .testimonial-box p {
    font-size: 1rem;
  }

  .nav-btn {
    font-size: 1.5rem;
  }
}

/* -------------<footer>----------------- */
/* -------------<footer>----------------- */
/* -------------<footer>----------------- */

footer {
  font-family: "Georgia", serif;
  text-align: center;
  padding: 40px 20px 0;
  color: #111;
  background-color: #faf8f5;
  font-size: 14px;
}

.follow_instagram {
  font-size: 1.2rem;
  margin: 5vh 0;
  letter-spacing: 2px;
  color: #111;
}

.follow_instagram i {
  font-size: 1.6rem;
}

.insta-gallery {
  display: flex;
  justify-content: center;
  gap: 5vw;
  margin: 15px 0;
  flex-wrap: wrap;
}

.insta-gallery img {
  width: 14rem;
  height: 14rem;
  object-fit: cover;
  object-position: center;
}

.insta-handle {
  text-transform: uppercase;
  margin-top: 3.5vh;
  font-size: 0.8rem;
  color: #111;
  letter-spacing: 3px;
  transition: all ease-in-out 0.3s;
}

.insta-handle:hover {
  color: #d9993a;
}

.first_hr_div {
  display: flex;
  justify-content: center;
  text-align: center;
  /* width: 100vw; */
}

.first_hr {
  margin: 6vh 0;
  border: none;
  border-top: 1px solid #ccc;
  width: 88%;
}

.footer-main {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  text-align: left;
  padding: 20px 0;
  max-width: 1200px;
  margin: auto;
  /* background: pink; */
}

.footer-center {
  flex: 100%;
  /* justify-content: center; */
  /* background-color: #d9993a; */
  text-align: center;
  margin-bottom: 12vh;
}

.footer-center img {
  width: 20vw;
}

.footer_left_first_pera {
  letter-spacing: 1px;
  font-size: 1.2rem;
  margin-bottom: 3vh;
  text-transform: uppercase;
  line-height: 28px;
}

.footer_left_last_pera {
  font-size: 1rem;
  line-height: 26px;
  margin-bottom: 10vh;
}

.footer-right h4 {
  font-weight: 500;
  font-size: 1.2rem;
  margin-bottom: 5px;
  color: #000;
  letter-spacing: 2px;
}

.footer-right ul {
  list-style: none;
  padding: 0;
  margin-bottom: 8vh;
}

.footer-right a {
  font-style: italic;
  text-decoration: none;
  font-size: 0.8rem;
  color: #d9993a;
  /* display: block; */
  margin: 0.8vh 0;
  transition: color 0.3s;
}

.footer-right a:hover {
  color: #111;
}

.footer-right .social_links a {
  font-style: normal;
  font-size: 1.2rem;
  margin-right: 2px;
}

.footer-bottom {
  padding: 20px 0;
  font-size: 10px;
  color: #999;
  text-align: center;
}

.footer-bottom p {
  letter-spacing: 1px;
  text-transform: uppercase;
}

.footer-bottom a {
  color: #999;
  font-weight: bold;
  transition: all ease-in-out 0.2s;
}
.footer-bottom a:hover {
  /* text-decoration: underline; */
  color: #d9993a;
}

.footer-bottom br {
  display: none;
}

/* ---------------------- */
/* ✅ Responsive Styles */
/* ---------------------- */

@media screen and (max-width: 768px) {
  .first_hr {
    margin: 3vh 0 0 0;
    width: 100%;
  }

  .follow_instagram {
    font-size: 24px;
  }
  .insta-gallery img {
    width: 150px;
    height: 150px;
  }

  .footer-center h2 {
    font-size: 24px;
  }

  .footer-center {
    margin: 0 !important;
  }

  .footer-center img {
    width: 40vw;
  }

  .footer_left_last_pera {
    margin-bottom: 0;
  }

  .footer-right ul {
    margin-bottom: 0;
  }

  .footer-right {
    display: flex;
    justify-content: center;
    gap: 40px;
  }
  .footer-right h4 {
    text-align: center !important;
    /* background-color: #ad7854; */
  }

  .footer-main {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }

  .footer-left,
  /* .footer-center, */
  .footer-right {
    margin: 10px 0;
  }

  .footer-left,
  .footer-right {
    text-align: center;
  }

  .footer-right ul {
    display: inline-block;
    text-align: left;
  }

  .footer-bottom br {
    display: block;
  }
}

@media screen and (max-width: 768px) {
  .footer-right a,
  .footer-left p,
  .footer-right h4 {
    font-size: 11px;
  }

  .footer-left strong {
    font-size: 12px;
  }
}

/*--------------------- portfoli page----------------- */
/*--------------------- new page----------------- */
/*--------------------- portfoli page----------------- */
/*------------------ gird layout---------------- */
/*------------------ new page---------------- */
/*------------------ gird layout---------------- */
/* Lightbox Styles */
/* Lightbox container */
/* Masonry Grid */

.two_btn_section {
  margin-top: 3vh;
  height: 12vh;
  width: 100vw;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
}

.two_btn {
  /* border-radius: 3px; */
  /* transform: translateX(-8px); */
  width: 200px;
  text-align: center;
  padding: 10px 0;
  background-color: black;
  color: #fff;
  transition: all 0.4s ease-in-out;
  cursor: pointer;
  box-shadow: 0 0.4rem 0.8rem rgba(0, 0, 0, 0.6);
  text-decoration: none;
}

/* ad7854 */
/* ---- */

.wedding_btn {
  background-color: #ad7854;
}

.color_btn {
  box-shadow: 0 0.2rem 0.4rem rgba(0, 0, 0, 0.2);
  text-decoration: none;
  color: #000;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  border: 1px solid black;
  background: transparent;
}

.color_btn:hover {
  color: #c59c6b;
  box-shadow: 0 0.4rem 0.8rem rgba(0, 0, 0, 0.6);
}

.gray:hover {
  color: #fff;
}

.color_btn::before {
  content: "";
  position: absolute;
  background: black;
  width: 0px;
  height: 0px;
  left: var(--xPos);
  top: var(--yPos);
  transform: translate(-50%, -50%);
  border-radius: 50%;
  transition: all 0.5s ease-in-out;
}

.wedding_btn::before {
  background-color: #ad7854;
}

.wedding_btn:hover {
  border: none;
}

.color_btn span {
  position: relative;
  z-index: 3;
}

.color_btn:hover::before {
  width: 420px;
  height: 330px;
}

/* --- */

.masonry-grid {
  padding: 2rem 2rem 2rem 1rem;
  column-count: 4;
  column-gap: 10px;
}

.masonry-grid img {
  width: 100%;
  margin-bottom: 6px;
  cursor: pointer;
  transition: transform 0.2s ease-in-out;
}

/* Masonry Grid Layout */

.masonry-grid img:hover {
  transform: scale(1.01);
}

/* Lightbox */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #f5f2f0;
  display: flex;
  align-items: center;
  justify-content: center;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  z-index: 1000;
}

.lightbox.visible {
  visibility: visible;
  opacity: 1;
}

.lightbox .lightbox-img {
  max-width: auto;
  max-height: 90%;
  transition: all 0.5s ease-in-out;
  transform-origin: center center;
  opacity: 1;
}

.lightbox .close {
  position: absolute;
  top: 16px;
  left: 25px;
  font-size: 1.6vw;
  background: none;
  border: none;
  color: grey;
  cursor: pointer;
  transition: all ease-in-out 0.4s;
}

.lightbox .close:hover {
  cursor: pointer;
  color: #000;
}

.lightbox .arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  color: gray;
  border: none;
  font-size: 2.5vw;
  padding: 10px;
  cursor: pointer;
  z-index: 10;
  visibility: hidden;
}

.lightbox .arrow.left {
  left: 10px;
}

.lightbox .arrow.right {
  right: 20px;
}

body:hover .lightbox .arrow {
  visibility: hidden;
}

body.left .lightbox .arrow.left {
  visibility: visible;
}

body.right .lightbox .arrow.right {
  visibility: visible;
}

.thumnai_image_upper_part .thumnai_image_left h3 {
  display: none;
}

/*  */
/*  */
/*  */

.thumnai_image {
  width: 100vw;
  margin-top: 1vh;
  height: auto;
}

.thumnai_image_upper_part {
  display: flex;
  gap: 0.6vw;
  width: 100%;
  height: 50vh;
  margin-top: 11vh;
}

.thumnai_image_upper_part .thumnai_image_left {
  width: 22%;
  /* width: 100vw; */
  height: auto;
  background-color: #c59c6b;
  overflow: hidden;
}

/* .thumnai_image_upper_part .thumnai_image_left .lifestyle {
  background-color: #eeeae3 !important;
}

.thumnai_image_upper_part .thumnai_image_left.maternity {
  background-color: #b8a18e;
} */

.thumnai_image_upper_part .thumnai_image_left img {
  object-fit: cover;
  object-position: top;
  height: 100%;
  width: 100%;
}

.thumnai_image_upper_part .thumnai_image_right {
  color: #fff;
  width: 80%;
  text-transform: uppercase;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5vw;
  height: auto;
}

.thumnai_image_upper_part .thumnai_image_right h2 {
  font-size: 1.5vw;
}

.thumnai_image_upper_part .thumnai_image_right.dark {
  background-color: #000;
}

.thumnai_image_upper_part .thumnai_image_right.street {
  background-color: #737373;
}

.thumnai_image_upper_part .thumnai_image_right.wedding {
  background-color: #ad7854;
}

.thumnai_image_upper_part .thumnai_image_right.lifestyle {
  background-color: #eeeae3;
}

.thumnai_image_upper_part .thumnai_image_right.maternity {
  background-color: #b8a18e;
}

.portfoli_gallery {
  height: 2vh;
  display: block;
  display: flex;
  justify-content: center;
  align-items: center;
}

.portfoli_gallery.dark {
  /* width: 1vw; */
  margin-top: 1vh;
  background-color: #000;
}

.portfoli_gallery.dark img {
  width: 2.3vw;
}

.portfoli_gallery.lifestyle {
  /* width: 1vw; */
  margin-top: 1vh;
  background-color: #eeeae3;
}

.portfoli_gallery.lifestyle img {
  width: 2.3vw;
}

.portfoli_gallery.street {
  /* width: 1vw; */
  margin-top: 1vh;
  background-color: #737373;
}

.portfoli_gallery.street img {
  width: 2.3vw;
}

.portfoli_gallery.wedding {
  /* width: 1vw; */
  margin-top: 1vh;
  background-color: #ad7854;
}

.portfoli_gallery.wedding img {
  width: 2.3vw;
}

.portfoli_gallery.maternity {
  /* width: 1vw; */
  margin-top: 1vh;
  background-color: #b8a18e;
}

.portfoli_gallery.maternity img {
  width: 2.3vw;
}

.portfoli_gallery.brown {
  margin-top: 1vh;
  background-color: #eeeae3;
  position: relative;
  z-index: 3;
}

.portfoli_gallery.brown img {
  height: auto;
  width: 2.3vw;
}

@media (max-width: 768px) {
  .thumnai_image_upper_part {
    /* padding: 4vh 4vh 1vh 4vh; */
    height: auto !important;
    margin-top: 6vh !important;
    /* height: 20vh !important; */
  }

  /* .thumnai_image_left img {
    border-radius: 10px;
  } */

  .thumnai_image_upper_part .thumnai_image_left {
    width: 100% !important;
    position: relative !important;
  }

  .thumnai_image_upper_part .thumnai_image_left h3 {
    display: block !important;
    position: absolute;
    text-transform: lowercase !important;
    font-style: italic;
    font-size: 23px;
    top: 50%;
    /* transform: translateY(14vh);
    z-index: 100 !important; */
    /* left: 20%; */
    text-align: center;
    /* left: 50%; */
    /* transform: translateY(-50px); */
    color: rgb(255, 255, 255, 0.7);
    width: 100%;
    /* background-color: rgba(0, 0, 0, 0.1); */
  }

  .thumnai_image_upper_part .thumnai_image_right {
    /* width: 60% !important; */
    display: none !important;
  }

  .portfoli_gallery {
    /* margin-top: -6vh !important; */
    width: 99.5% !important;
    height: 6px !important;
    margin-bottom: 1vh;
  }

  .portfoli_gallery img {
    height: auto;
    width: 20px !important;
  }

  .masonry-grid {
    margin-top: 2vh;
    /* padding: 19px !important; */
    /* padding: 10px !important; */
    padding: 0px 11px 0 11px;
    column-count: 1 !important;
    column-gap: 6px !important;
  }

  .masonry-grid img {
    /* height: 350px; */
    max-height: 360px;
    object-fit: cover;
    /* margin-bottom: 15px !important; */
    margin-top: 3px !important;

    border-radius: 10px;
  }

  .masonry-grid img:hover {
    transform: scale(1);
  }
  .lightbox {
    display: none;
  }

  .lightbox .lightbox-img {
    width: 93vw !important;
    /* transform: translateY(-40px) !important; */
  }

  .lightbox .close {
    font-size: 6vw !important;
  }
}

/*  */
/*  */
/*  */
/*  */
/*  */
/*---------- faqs ----------  */
/*---------- faqs ----------  */
/*---------- faqs ----------  */
.faqs_container {
  height: 20vh !important;
  margin-top: 8vh !important;
}

.faqs_container img {
  width: 16vw !important;
}

.faqs_container h2 {
  font-size: 3.5vw !important;
}

.accordion {
  margin-top: 5vh !important;
  margin-bottom: 5vh !important;
  width: 90vw !important;
}

.accordion-header {
  font-size: 12px !important;
}

.accordion-item.open .accordion-content p {
  font-size: 12px !important;
  line-height: 14px;
  margin: 2vh 0 !important;
}

.portfoli_gallery {
  height: 2vh;
  display: block;
  display: flex;
  justify-content: center;
  align-items: center;
}

.portfoli_gallery.brown {
  margin-top: 1vh;
  background-color: #eeeae3;
  position: relative;
  z-index: 3;
}

.portfoli_gallery.brown img {
  height: auto;
  width: 2.3vw;
}

/*--------------------- pricing page----------------- */
/*--------------------- new page----------------- */
/*--------------------- pricing page----------------- */

.pricing_body {
  background-color: #faf8f5;
  /* margin-; */
}

.crem_nav {
  background-color: #eeeae3;
}

.pricing_head_container {
  background-color: #fff;
}

.thumnail {
  margin-top: 12vh;
  height: 50vh;
  background: url("assets/newborn/14.webp") no-repeat top center / cover;
  background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)),
    url("assets/newborn/50.webp") no-repeat center center / cover;

  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: all ease-in-out 0.2s;
}

.family_thumnail {
  /* background: url("assets/family_newborn/23.webp") no-repeat top center / cover; */
  background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)),
    url("assets/family_newborn/23.webp") no-repeat center bottom / cover;
  background-attachment: fixed;
}

.thumnail_contact {
  background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)),
    url("assets/my_photo/221.webp") no-repeat bottom center / cover;
  background-attachment: fixed;
}

/* .thumnail img {
  width: 30vw;
  opacity: 0.5;
} */

.thumnail h2 {
  position: absolute;
  font-size: 40px;
  color: #fff;
  font-style: italic;
  text-transform: lowercase;
}

.photoshoot_instructions_title {
  letter-spacing: 3px;
  text-transform: uppercase;
  margin: 10vh 0 6vh 0;
  text-align: center;
  font-size: 22px;
}

.accordion {
  max-width: 70vw;
  width: 60vw;
  margin: 10vh auto;
  /* border: 1px solid #ddd; */
  /* border-radius: 8px; */
  overflow: hidden;
}

.accordion-item {
  border-bottom: 1px solid #ddd;
}

.accordion-item:last-child {
  border-bottom: none;
}

.accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px;
  cursor: pointer;
  font-size: 15px;
  text-transform: uppercase;
  font-weight: 600;
  /* background-color: #f9f9f9; */
  transition: background-color 0.3s ease;
}

.accordion-header:hover {
  background-color: #eaeaea;
}

.accordion-icon {
  font-size: 24px;
  transition: transform 0.3s ease;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  padding: 0 16px;
  background-color: #fff;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.accordion-content p {
  font-size: 14px;
  margin: 16px 0;
}

.accordion-item.open .accordion-content {
  max-height: 200px; /* Adjust based on content */
  padding: 6px 16px 8px 16px;
}

.accordion-item.open .accordion-icon {
  content: "-";
  transform: rotate(180deg); /* Optional for animation */
}

.accordion_btn_div {
  display: flex;
  justify-content: center;
  margin: 1vh 0 7vh 0;
}

.accordion_btn_div a {
  text-decoration: none;
  font-style: italic;
  background-color: rgb(217, 153, 58);
  color: #fff;
  width: 180px;
  text-align: center;
  padding: 10px 0;
  transition: all ease-in 0.3s;
  border-radius: 20px;
  border: 1px solid #d9993a;
}

.accordion_btn_div a:hover {
  background-color: transparent;
  color: #000;
  transform: scale(1.05);
}

/* .accordion_section_hr {
  color: rgb(217, 153, 58);
} */

@media (max-width: 768px) {
  .photoshoot_instructions_title {
    letter-spacing: 2px;
    margin: 5vh 0 0vh 0;
    font-size: 16px;
    /* text-decoration: underline; */
    font-style: italic;
    transform: translateY(5px);
  }

  .accordion_btn_div a {
    padding: 9px 0;
    width: 180px;
    font-size: 16px;
  }

  .thumnail {
    margin: 5vh 0vw 0 0vw;
    width: 100%;
    height: 30vh !important;
    /* background-position: top top; */
    background-attachment: scroll;
  }

  .thumnail h2 {
    font-size: 23px;
    /* font-style: italic; */
  }
  .family_thumnail h2 {
    font-size: 21px;
  }

  .accordion {
    margin-top: 5vh !important;
    margin-bottom: 5vh !important;
    max-width: 85vw;
    width: 90vw !important;
  }

  .accordion-header {
    font-size: 12px !important;
  }

  .accordion-item.open .accordion-content p {
    font-size: 12px !important;
    line-height: 14px;
    margin: 2vh 0 !important;
  }
}

/*  */
/*  */
/*  */
/*  */

.pricing_grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4vh;
  margin: 4vh 0;
  /* width: 100vw; */
}

.pricing_card {
  display: flex;
  background: #fff;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  overflow: hidden;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 2vw;
}

.pricing_image img {
  width: 240px;
  height: 320px;
  object-fit: cover;
  border-radius: 10px;
}

.pricing_content {
  flex: 1;
  padding: 0 2vw;
}

.pricing_content h2 {
  font-size: 1.5rem;
  text-transform: uppercase;
  margin-bottom: 1vh;
}

.pricing_content ul {
  padding-left: 1.2rem;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1vh;
}

.pricing_content ul li {
  margin-bottom: 0.5vh;
}

.price {
  text-align: right;
  font-size: 1.3rem;
  font-weight: bold;
  color: #000;
  margin-top: 1vh;
}

.pricing_card_pera {
  font-style: italic;
  font-size: 14px;
}

.book_now_btn {
  display: inline-block;
  margin-top: 1.5vh;
  padding: 0.8em 1.5em;
  background-color: #000;
  color: #fff;
  font-weight: 600;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.book_now_btn:hover {
  background-color: rgb(217, 153, 58);
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 6px 18px rgba(233, 30, 99, 0.4);
  box-shadow: 0 6px 18px rgb(217, 153, 58, 0.4);
  /* color: #000; */
}

.pricing_card_last {
  display: flex;
  justify-content: center;
  padding: 12px 0;
}

.pricing_card_last_line {
  text-align: center;
  font-size: 16px;
  font-style: italic;
  letter-spacing: 1px;
  color: rgb(217, 153, 58);
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .pricing_card_last {
    padding: 10px 0;
  }

  .pricing_card_last_line {
    font-size: 12px;
  }

  .pricing_card_pera {
    font-style: italic;
    font-size: 10px;
  }
  .pricing_grid {
    padding: 0 10px;
  }
  .pricing_card {
    /* border: 0.5px solid #d9993a; */
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 5vw;
  }

  .pricing_image img {
    /* width: 85vw;
    height: 90vw;  */
    width: 80vw;
    height: 100vw;
  }

  .pricing_content {
    padding: 3vh 0 1vh 0;
  }

  .pricing_content h2 {
    font-size: 1.2rem;
  }

  .pricing_content ul {
    font-size: 0.9rem;
    padding-left: 0;
  }

  .price {
    font-size: 1.1rem;
    text-align: center;
  }
}

/*--------------------- contact me page----------------- */
/*--------------------- new page----------------- */
/*--------------------- contact me page----------------- */

.julia {
  max-width: 900px;
  margin: 40px auto;
  padding: 40px;
  font-family: "Helvetica Neue", sans-serif;
  border: 2px solid black;
  border-radius: 8px;
  background-color: white;
  box-sizing: border-box;
}

.julia-form {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.julia-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.julia-row label {
  width: 100%;
  font-weight: 600;
  font-size: 15px;
  color: #333;
  margin-top: 10px;
}

.julia-input {
  flex: 1;
  min-width: 300px;
  padding: 16px;
  font-size: 15px;
  background: #f1f1f3;
  border: none;
  outline: none;
  border-radius: 6px;
  box-sizing: border-box;
  cursor: pointer;
  color: #333;
}

.julia-full label {
  display: block;
  font-weight: 600;
  font-size: 15px;
  color: #333;
  margin-bottom: 10px;
}

.julia-textarea {
  width: 100%;
  height: 220px;
  padding: 16px;
  font-size: 15px;
  background: #f1f1f3;
  border: none;
  outline: none;
  border-radius: 6px;
  resize: vertical;
  box-sizing: border-box;
}

.julia-submit {
  background: black;
  color: white;
  padding: 18px;
  font-size: 16px;
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: opacity 0.3s ease;
  width: 100%;
  border-radius: 6px;
}

.julia-submit:hover {
  opacity: 0.9;
}

.get_in_touch {
  /* font-family: sans-serif; */
  text-align: center;
  font-size: 50px;
  margin-top: 4vh;
}

.testimonial_section_contact_page {
  margin-bottom: 2vh;
}

/* Responsive Design */
@media (max-width: 768px) {
  .julia {
    max-width: 90vw !important;
    border: 1px solid black;
    border-radius: 4px;
    /* margin: 40px 10px; */
    width: 400px;
    padding: 10px;
    margin-top: 22px;
  }
  .julia-row {
    flex-direction: column;
  }

  .get_in_touch {
    font-size: 28px;
  }
  .testimonial_section_contact_page {
    margin-bottom: 2vh;
  }
}
